LINEAR++ library: AFF to LAPACK

◆ LaGenMatSolve()

void LaGenMatSolve ( LaGenMatDouble &  A,
LaVectorDouble &  b,
LaVectorLongInt &  piv 
)
inline

Definition at line 35 of file fmd.h.

References dgetrs(), and F77NAME.

37 {
38  char trans = 'N';
39  integer n = A.size(1), lda = A.gdim(0), nrhs = 1,
40  ldb = b.size(), info = 0;
41 
42  F77NAME(dgetrs)(&trans, &n, &nrhs, &A(0,0), &lda, &piv(0),
43  &b(0), &ldb, &info);
44 }
long int integer
Definition: f77lapack.h:61
void F77NAME() dgetrs(char *trans, integer *N, integer *nrhs, doublereal *A, integer *lda, integer *ipiv, doublereal *b, integer *ldb, integer *info)
#define F77NAME(x)
Definition: arch.h:17
Here is the call graph for this function: