diff options
author | Reiner Pope <unknown> | 2008-10-24 08:59:02 +0000 |
---|---|---|
committer | Reiner Pope <unknown> | 2008-10-24 08:59:02 +0000 |
commit | d8639b28ec9e83b54b45c987508d270d5469451c (patch) | |
tree | ed660ba16b4dd21bd9608fbbde7cc4dcba93f31c /lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h | |
parent | ce8fed3a3558468b128a03cc4c96aa6c11357b4d (diff) |
added dgetrs support for solving linear systems from LU factorization
Diffstat (limited to 'lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h')
-rw-r--r-- | lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h index 79e52be..e98e9dc 100644 --- a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h +++ b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h | |||
@@ -84,3 +84,5 @@ int schur_l_C(KCMAT(a), CMAT(u), CMAT(s)); | |||
84 | 84 | ||
85 | int lu_l_R(KDMAT(a), DVEC(ipiv), DMAT(r)); | 85 | int lu_l_R(KDMAT(a), DVEC(ipiv), DMAT(r)); |
86 | int lu_l_C(KCMAT(a), DVEC(ipiv), CMAT(r)); | 86 | int lu_l_C(KCMAT(a), DVEC(ipiv), CMAT(r)); |
87 | |||
88 | int luS_l_R(DMAT(a), KDVEC(ipiv), KDMAT(b), DMAT(x)); | ||