|
Class Summary |
| Blas_f77 |
This class contains Java versions of a number of the LINPACK
basic linear algebra subroutines (blas):
isamax_f77
daxpy_f77
ddot_f77
dscal_f77
dswap_f77
dnrm2_f77
dcopy_f77
drotg_f77
It also contains utility routines that the translator found useful
while translating the FORTRAN code to Java code. |
| Blas_j |
This class contains Java versions of a number of the LINPACK
basic linear algebra subroutines (blas):
isamax_j
daxpy_j
ddot_j
dscal_j
dswap_j
dnrm2_j
dcopy_j
drotg_j
It also contains utility routines that the translator found useful
while translating the FORTRAN code to Java code. |
| Cholesky |
This class contains:
a method that obtains the Cholesky
factorization RR´, where R is a lower triangular matrix,
of a symmetric positive definite matrix A. |
| Cholesky_f77 |
This class contains the LINPACK DPOFA (Cholesky decomposition),
DPOSL (solve), and DPODI (determinant and inverse) routines. |
| Cholesky_j |
This class contains the LINPACK DPOFA (Cholesky decomposition),
DPOSL (solve), and DPODI (determinant and inverse) routines. |
| CholTest |
This class tests the Cholesky decomposition class
and the Triangular solve/invert class. |
| CholTest_f77 |
This class tests the Cholesky_f77 classes. |
| CholTest_j |
This class tests the Cholesky_j classes. |
| LU_f77 |
This class contains the LINPACK DGEFA (LU factorization),
DGESL (solve), and DGEDI (determinant and inverse) routines. |
| LU_j |
This class contains the LINPACK DGEFA (LU factorization),
DGESL (solve), and DGEDI (determinant and inverse) routines. |
| LUTest_f77 |
This class tests the LU_f77 methods. |
| LUTest_j |
This class tests the LU_j methods. |
| QR_f77 |
This class contains the LINPACK DQRDC (QR decomposition)
and DQRSL (QR solve) routines. |
| QR_j |
This class contains the LINPACK DQRDC (QR decomposition)
and DQRSL (QR solve) routines. |
| QRTest_f77 |
This class tests the (LINPACK) QR classes. |
| QRTest_j |
This class tests the (LINPACK) QR classes. |
| SVDC_f77 |
This class contains the LINPACK DSVDC (singular value
decomposition) routine. |
| SVDC_j |
This class contains the LINPACK DSVDC (singular value
decomposition) routine. |
| SVDCTest_f77 |
This class tests the (LINPACK) SVDC method. |
| SVDCTest_j |
This class tests the (LINPACK) SVDC method. |
| Triangular |
This class contains:
methods to solve Ly = b and Ux = y
where L is a full rank lower triangular matrix and
U is a full rank upper triangular matrix. |