|
|||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | ||||||||
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. |
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:
((j < m) & (LU[j][j] != 0.0)) needs to be changed to ((j < m) && (LU[j][j] != 0.0)).double[] Arowi;
and
double s;
|
|||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | ||||||||