Package org.ojalgo.matrix.jama

This package contains adapter classes to JAMA.

See:
          Description

Class Summary
JamaCholesky This class adapts JAMA's CholeskyDecomposition to ojAlgo's Cholesky interface.
JamaEigenvalue This class adapts JAMA's EigenvalueDecomposition to ojAlgo's Eigenvalue interface.
JamaFactory Implements both BasicMatrix.Factory and PhysicalStore.Factory, and creates JamaMatrix instances.
JamaLU This class adapts JAMA's LUDecomposition to ojAlgo's LU interface.
JamaMatrix This class adapts JAMA's Matrix to ojAlgo's BasicMatrix and PhysicalStore interfaces.
JamaQR This class adapts JAMA's QRDecomposition to ojAlgo's QR interface.
JamaSingularValue This class adapts JAMA's SingularValueDecomposition to ojAlgo's SingularValue interface.
 

Package org.ojalgo.matrix.jama Description

This package contains adapter classes to JAMA. The entire original JAMA package is here but made package private. Use the adapters.

Instructions for the ojAlgo developer if/when JAMA is updated:

  1. Delete all *.java files in this package with names that do not begin with Jama*.
  2. Move the new JAMA files do this package and update the files' package declarations.
  3. Change all the new classes from public to default (package private).
  4. Apply fixes