LINEAR++ library: AFF to LAPACK

◆ LaSymmBandMatFactorize()

void LaSymmBandMatFactorize ( const LaSymmBandMatDouble &  A,
LaSymmBandFactDouble AF 
)
inline

Definition at line 126 of file sybfd.h.

References dpbtrf(), F77NAME, and LaSymmBandFactDouble::S().

128 {
129  char uplo = 'L';
130  integer n = A.size(0), kd = A.subdiags(), lda = A.gdim(0),
131  info = 0;
132 
133  AF.S().copy(A);
134  F77NAME(dpbtrf)(&uplo, &n, &kd, &(AF.S()(0,0)), &lda, &info);
135 }
long int integer
Definition: f77lapack.h:61
void F77NAME() dpbtrf(char *UPLO, integer *N, integer *KD, doublereal *SBM, integer *LDSM, integer *info)
LaSymmBandMatDouble & S()
Definition: sybfd.h:71
#define F77NAME(x)
Definition: arch.h:17
Here is the call graph for this function: