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
inuplo'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.inoutAArray of dimension
(lda,n). The block diagonal matrix D and the multipliers used to obtain the factor U or L as computed byssytrf.inldaThe leading dimension of the array A.
lda>=max(1,n).inipivArray of dimension
n. Details of the interchanges and the block structure of D as determined byssytrf.outEArray of dimension
n. E stores the supdiagonal/subdiagonal of the symmetric 1-by-1 or 2-by-2 block diagonal matrix D in LDLT.outinfoinfo=0: successful exitinfo<0: ifinfo=-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
inuplo'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.inoutAArray of dimension
(lda,n). The block diagonal matrix D and the multipliers used to obtain the factor U or L as computed bydsytrf.inldaThe leading dimension of the array A.
lda>=max(1,n).inipivArray of dimension
n. Details of the interchanges and the block structure of D as determined bydsytrf.outEArray of dimension
n. E stores the supdiagonal/subdiagonal of the symmetric 1-by-1 or 2-by-2 block diagonal matrix D in LDLT.outinfoinfo=0: successful exitinfo<0: ifinfo=-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
inuplo'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.inoutAComplex array of dimension
(lda,n). The block diagonal matrix D and the multipliers used to obtain the factor U or L as computed bycsytrf.inldaThe leading dimension of the array A.
lda>=max(1,n).inipivArray of dimension
n. Details of the interchanges and the block structure of D as determined bycsytrf.outEComplex array of dimension
n. E stores the supdiagonal/subdiagonal of the symmetric 1-by-1 or 2-by-2 block diagonal matrix D in LDLT.outinfoinfo=0: successful exitinfo<0: ifinfo=-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
inuplo'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.inoutAComplex array of dimension
(lda,n). The block diagonal matrix D and the multipliers used to obtain the factor U or L as computed byzsytrf.inldaThe leading dimension of the array A.
lda>=max(1,n).inipivArray of dimension
n. Details of the interchanges and the block structure of D as determined byzsytrf.outEComplex array of dimension
n. E stores the supdiagonal/subdiagonal of the symmetric 1-by-1 or 2-by-2 block diagonal matrix D in LDLT.outinfoinfo=0: successful exitinfo<0: ifinfo=-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
);