syconv#
Functions
-
void ssyconv(const char *uplo, const char *way, const INT n, f32 *restrict A, const INT lda, const INT *restrict ipiv, f32 *restrict E, INT *info)#
SSYCONV convert A given by TRF into L and D and vice-versa.
Get Non-diag elements of D (returned in workspace) and apply or reverse permutation done in TRF.
Parameters
inuploSpecifies whether the details of the factorization are stored as an upper or lower triangular matrix. = ‘U’: Upper triangular, form is A = U*D*U**T; = ‘L’: Lower triangular, form is A = L*D*L**T.
inway= ‘C’: Convert = ‘R’: Revert
innThe order of the matrix A. n >= 0.
inoutADouble precision array, dimension (lda, n). The block diagonal matrix D and the multipliers used to obtain the factor U or L as computed by SSYTRF.
inldaThe leading dimension of the array A. lda >= max(1, n).
inipivInteger array, dimension (n). Details of the interchanges and the block structure of D as determined by SSYTRF.
outEDouble precision array, dimension (n). E stores the supdiagonal/subdiagonal of the symmetric 1-by-1 or 2-by-2 block diagonal matrix D in LDLT.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void ssyconv(
const char* uplo,
const char* way,
const INT n,
f32* restrict A,
const INT lda,
const INT* restrict ipiv,
f32* restrict E,
INT* info
);
Functions
-
void dsyconv(const char *uplo, const char *way, const INT n, f64 *restrict A, const INT lda, const INT *restrict ipiv, f64 *restrict E, INT *info)#
DSYCONV convert A given by TRF into L and D and vice-versa.
Get Non-diag elements of D (returned in workspace) and apply or reverse permutation done in TRF.
Parameters
inuploSpecifies whether the details of the factorization are stored as an upper or lower triangular matrix. = ‘U’: Upper triangular, form is A = U*D*U**T; = ‘L’: Lower triangular, form is A = L*D*L**T.
inway= ‘C’: Convert = ‘R’: Revert
innThe order of the matrix A. n >= 0.
inoutADouble precision array, dimension (lda, n). The block diagonal matrix D and the multipliers used to obtain the factor U or L as computed by DSYTRF.
inldaThe leading dimension of the array A. lda >= max(1, n).
inipivInteger array, dimension (n). Details of the interchanges and the block structure of D as determined by DSYTRF.
outEDouble precision array, dimension (n). E stores the supdiagonal/subdiagonal of the symmetric 1-by-1 or 2-by-2 block diagonal matrix D in LDLT.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void dsyconv(
const char* uplo,
const char* way,
const INT n,
f64* restrict A,
const INT lda,
const INT* restrict ipiv,
f64* restrict E,
INT* info
);
Functions
-
void csyconv(const char *uplo, const char *way, const INT n, c64 *restrict A, const INT lda, const INT *restrict ipiv, c64 *restrict E, INT *info)#
CSYCONV convert A given by TRF into L and D and vice-versa.
Get Non-diag elements of D (returned in workspace) and apply or reverse permutation done in TRF.
Parameters
inuploSpecifies whether the details of the factorization are stored as an upper or lower triangular matrix. = ‘U’: Upper triangular, form is A = U*D*U**T; = ‘L’: Lower triangular, form is A = L*D*L**T.
inway= ‘C’: Convert = ‘R’: Revert
innThe order of the matrix A. n >= 0.
inoutASingle complex array, dimension (lda, n). The block diagonal matrix D and the multipliers used to obtain the factor U or L as computed by CSYTRF.
inldaThe leading dimension of the array A. lda >= max(1, n).
inipivInteger array, dimension (n). Details of the interchanges and the block structure of D as determined by CSYTRF.
outESingle complex array, dimension (n). E stores the supdiagonal/subdiagonal of the symmetric 1-by-1 or 2-by-2 block diagonal matrix D in LDLT.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void csyconv(
const char* uplo,
const char* way,
const INT n,
c64* restrict A,
const INT lda,
const INT* restrict ipiv,
c64* restrict E,
INT* info
);
Functions
-
void zsyconv(const char *uplo, const char *way, const INT n, c128 *restrict A, const INT lda, const INT *restrict ipiv, c128 *restrict E, INT *info)#
ZSYCONV convert A given by TRF into L and D and vice-versa.
Get Non-diag elements of D (returned in workspace) and apply or reverse permutation done in TRF.
Parameters
inuploSpecifies whether the details of the factorization are stored as an upper or lower triangular matrix. = ‘U’: Upper triangular, form is A = U*D*U**T; = ‘L’: Lower triangular, form is A = L*D*L**T.
inway= ‘C’: Convert = ‘R’: Revert
innThe order of the matrix A. n >= 0.
inoutADouble complex array, dimension (lda, n). The block diagonal matrix D and the multipliers used to obtain the factor U or L as computed by ZSYTRF.
inldaThe leading dimension of the array A. lda >= max(1, n).
inipivInteger array, dimension (n). Details of the interchanges and the block structure of D as determined by ZSYTRF.
outEDouble complex array, dimension (n). E stores the supdiagonal/subdiagonal of the symmetric 1-by-1 or 2-by-2 block diagonal matrix D in LDLT.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void zsyconv(
const char* uplo,
const char* way,
const INT n,
c128* restrict A,
const INT lda,
const INT* restrict ipiv,
c128* restrict E,
INT* info
);