Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #include "lapack_common.h"
00026 #include <Eigen/Cholesky>
00027
00028
00029 EIGEN_LAPACK_FUNC(potrf,(char* uplo, int *n, RealScalar *pa, int *lda, int *info))
00030 {
00031 *info = 0;
00032 if(UPLO(*uplo)==INVALID) *info = -1;
00033 else if(*n<0) *info = -2;
00034 else if(*lda<std::max(1,*n)) *info = -4;
00035 if(*info!=0)
00036 {
00037 int e = -*info;
00038 return xerbla_(SCALAR_SUFFIX_UP"POTRF", &e, 6);
00039 }
00040
00041 Scalar* a = reinterpret_cast<Scalar*>(pa);
00042 MatrixType A(a,*n,*n,*lda);
00043 int ret;
00044 if(UPLO(*uplo)==UP) ret = internal::llt_inplace<Upper>::blocked(A);
00045 else ret = internal::llt_inplace<Lower>::blocked(A);
00046
00047 if(ret>=0)
00048 *info = ret+1;
00049
00050 return 0;
00051 }
00052
00053
00054
00055
00056 EIGEN_LAPACK_FUNC(potrs,(char* uplo, int *n, int *nrhs, RealScalar *pa, int *lda, RealScalar *pb, int *ldb, int *info))
00057 {
00058 *info = 0;
00059 if(UPLO(*uplo)==INVALID) *info = -1;
00060 else if(*n<0) *info = -2;
00061 else if(*nrhs<0) *info = -3;
00062 else if(*lda<std::max(1,*n)) *info = -5;
00063 else if(*ldb<std::max(1,*n)) *info = -7;
00064 if(*info!=0)
00065 {
00066 int e = -*info;
00067 return xerbla_(SCALAR_SUFFIX_UP"POTRS", &e, 6);
00068 }
00069
00070 Scalar* a = reinterpret_cast<Scalar*>(pa);
00071 Scalar* b = reinterpret_cast<Scalar*>(pb);
00072 MatrixType A(a,*n,*n,*lda);
00073 MatrixType B(b,*n,*nrhs,*ldb);
00074
00075 if(UPLO(*uplo)==UP)
00076 {
00077 A.triangularView<Upper>().adjoint().solveInPlace(B);
00078 A.triangularView<Upper>().solveInPlace(B);
00079 }
00080 else
00081 {
00082 A.triangularView<Lower>().solveInPlace(B);
00083 A.triangularView<Lower>().adjoint().solveInPlace(B);
00084 }
00085
00086 return 0;
00087 }