#include "MyLapack.h"
Go to the source code of this file.
Functions | |
double | DLU_det (DMatrix &A, int *ipiv) |
int | DLU_decomp (DMatrix &A, int *ipiv) |
int | DLU_invert (DMatrix &A, int *ipiv, double *work, int &lwork) |
int | DSYEV (char jobz, char uplo, DMatrix &M, DVector &V, double *work, int &lwork) |
int | DLU_solve (DMatrix &M, int *ipiv, DVector &b) |
float | SLU_det (SMatrix &A, int *ipiv) |
int | SLU_decomp (SMatrix &A, int *ipiv) |
int | SLU_invert (SMatrix &A, int *ipiv, float *work, int &lwork) |
int | SSYEV (char jobz, char uplo, SMatrix &M, SVector &V, float *work, int &lwork) |
int | SLU_solve (SMatrix &M, int *ipiv, SVector &b) |
|
LU decomposition for a dense matrix.
Definition at line 41 of file MyLapack.cpp. References DMatrix::array(), DMatrix::dim1(), F77_FUNC, info, and n. |
|
Calculates th determinant of a matrix using its LU decomposed matrix Definition at line 27 of file MyLapack.cpp. References DMatrix::dim1(). |
|
Calculates the inverse and determinant of a matrix using a dense LU solver. This method scales as . Definition at line 49 of file MyLapack.cpp. References DMatrix::array(), DMatrix::dim1(), DMatrix::dim2(), F77_FUNC, info, lda, and n. |
|
Solves a system of linear equations using a dense LU solver. this method scales as . Definition at line 68 of file MyLapack.cpp. References DMatrix::array(), DVector::array(), DMatrix::dim1(), F77_FUNC, info, and n. |
|
Calculate Eigenvalues and also Eigenvector of a symmetric matrix Definition at line 59 of file MyLapack.cpp. References DMatrix::array(), DVector::array(), DMatrix::dim1(), DMatrix::dim2(), DSYEV(), F77_FUNC, info, lda, and n. |
|
Single Precision Definition at line 93 of file MyLapack.cpp. References SMatrix::array(), SMatrix::dim1(), F77_FUNC, info, and n. |
|
Definition at line 79 of file MyLapack.cpp. References SMatrix::dim1(). |
|
Definition at line 101 of file MyLapack.cpp. References SMatrix::array(), SMatrix::dim1(), SMatrix::dim2(), F77_FUNC, info, lda, and n. |
|
Definition at line 120 of file MyLapack.cpp. References SVector::array(), SMatrix::array(), SMatrix::dim1(), F77_FUNC, info, and n. |
|
Definition at line 111 of file MyLapack.cpp. References SMatrix::array(), SVector::array(), SMatrix::dim1(), SMatrix::dim2(), F77_FUNC, info, lda, n, and SSYEV(). |