Function
NumCosmoMathlapack_dpotri
Declaration [src]
gint
ncm_lapack_dpotri (
gchar uplo,
gint n,
gdouble* a,
gint lda
)
Description [src]
This function computes the inverse of a real symmetric positive
definite matrix a = A using the Cholesky factorization
$A = U^TU$ or $A = LL^T$ computed by ncm_lapack_dpotrf().
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).