LINEAR++ library: AFF to LAPACK

◆ dposv() [2/2]

TDmatrix linear::lapack::dposv ( const TDmatrix::Tcoc &  A,
const TDmatrix::Tcoc &  B,
char  UPLO,
const bool &  debug 
)

easy to use version

Definition at line 124 of file dposv_if.cc.

References dposv().

127  {
128  // factorized Matrix
129  TDmatrix M(A.copyout());
130  // return value
131  TDmatrix X=B.copyout();
132  int INFO;
133  dposv(UPLO, M, X, INFO, debug);
134  return(X);
135  } // dposv
aff::Array< double > TDmatrix
Definition: matrix.h:46
void F77NAME() dposv(char *uplo, integer *m, integer *k, doublereal *A, integer *lda, doublereal *X, integer *ldx, integer *info)
Here is the call graph for this function: