Function
NumCosmoMathlapack_dsytri
Declaration [src]
gint
ncm_lapack_dsytri (
gchar uplo,
gint n,
gdouble* a,
gint lda,
gint* ipiv,
NcmLapackWS* ws
)
Description [src]
This function compute the inverse of a real symmetric indefinite matrix a using
the factorization a = UDUT or a = LDLT computed by ncm_lapack_dsytrf().
Parameters
uplo-
Type:
gchar‘U’ upper triangle of
ais stored; ‘L’ lower triangle ofais stored. n-
Type:
gintThe order of the matrix
a,n>= 0. a-
Type:
gdouble*Array of doubles with dimension (
n,lda).The data is owned by the caller of the function. lda-
Type:
gintThe leading dimension of the array
a,lda>= max (1,n). ipiv-
Type:
gint*Information about decomposition swaps and blocks.
The data is owned by the caller of the function. ws-
Type:
NcmLapackWSA
NcmLapackWS.The data is owned by the caller of the function.