Function
NumCosmoMathlapack_dsysv
Declaration [src]
gint
ncm_lapack_dsysv (
gchar uplo,
gint n,
gint nrhs,
gdouble* a,
gint lda,
gint* ipiv,
gdouble* b,
gint ldb,
gdouble* work,
gint lwork
)
Description [src]
Purpose
DSYSV uses the diagonal pivoting factorization to compute the solution to a real system of linear equations A * X = B, where A is an N-by-N symmetric matrix and X and B are N-by-NRHS matrices.
Parameters
uplo-
Type:
gcharUPLO is CHARACTER*1.
n-
Type:
gintN is INTEGER.
nrhs-
Type:
gintNRHS is INTEGER.
a-
Type:
gdouble*A is DOUBLE PRECISION array, dimension (LDA,N).
The data is owned by the caller of the function. lda-
Type:
gintLDA is INTEGER.
ipiv-
Type:
gint*IPIV is INTEGER array, dimension (N).
The data is owned by the caller of the function. b-
Type:
gdouble*B is DOUBLE PRECISION array, dimension (LDB,NRHS).
The data is owned by the caller of the function. ldb-
Type:
gintLDB is INTEGER.
work-
Type:
gdouble*WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)).
The data is owned by the caller of the function. lwork-
Type:
gintLWORK is INTEGER.