tgsyl#
Functions
-
void stgsyl(const char *trans, const INT ijob, const INT m, const INT n, const f32 *restrict A, const INT lda, const f32 *restrict B, const INT ldb, f32 *restrict C, const INT ldc, const f32 *restrict D, const INT ldd, const f32 *restrict E, const INT lde, f32 *restrict F, const INT ldf, f32 *scale, f32 *dif, f32 *restrict work, const INT lwork, INT *restrict iwork, INT *info)#
STGSYL solves the generalized Sylvester equation:
where R and L are unknown m-by-n matrices, (A, D), (B, E) and (C, F) are given matrix pairs of size m-by-m, n-by-n and m-by-n, respectively, with real entries. (A, D) and (B, E) must be in generalized (real) Schur canonical form, i.e. A, B are upper quasi triangular and D, E are upper triangular.A * R - L * B = scale * C (1) D * R - L * E = scale * F
The solution (R, L) overwrites (C, F). 0 <= SCALE <= 1 is an output scaling factor chosen to avoid overflow.
In matrix notation (1) is equivalent to solve Zx = scale b, where Z is defined as
Here Ik is the identity matrix of size k and X**T is the transpose of X. kron(X, Y) is the Kronecker product between the matrices X and Y.Z = [ kron(In, A) -kron(B**T, Im) ] (2) [ kron(In, D) -kron(E**T, Im) ].
If TRANS = ‘T’, STGSYL solves the transposed system Z**T*y = scale*b, which is equivalent to solve for R and L in
This case (TRANS = ‘T’) is used to compute an one-norm-based estimate of Dif[(A,D), (B,E)], the separation between the matrix pairs (A,D) and (B,E), using SLACON.A**T * R + D**T * L = scale * C (3) R * B**T + L * E**T = scale * -F
If IJOB >= 1, STGSYL computes a Frobenius norm-based estimate of Dif[(A,D),(B,E)]. That is, the reciprocal of a lower bound on the reciprocal of the smallest singular value of Z. See [1-2] for more information.
This is a level 3 BLAS algorithm.
Parameters
intrans‘N’: solve the generalized Sylvester equation (1). ‘T’: solve the ‘transposed’ system (3).
inijobSpecifies what kind of functionality to be performed. = 0: solve (1) only. = 1: The functionality of 0 and 3. = 2: The functionality of 0 and 4. = 3: Only an estimate of Dif[(A,D), (B,E)] is computed. (look ahead strategy IJOB = 1 is used). = 4: Only an estimate of Dif[(A,D), (B,E)] is computed. ( SGECON on sub-systems is used ). Not referenced if TRANS = ‘T’.
inmThe order of the matrices A and D, and the row dimension of the matrices C, F, R and L.
innThe order of the matrices B and E, and the column dimension of the matrices C, F, R and L.
inAThe upper quasi triangular matrix A. Array of dimension (lda, m).
inldaThe leading dimension of the array A. lda >= max(1, m).
inBThe upper quasi triangular matrix B. Array of dimension (ldb, n).
inldbThe leading dimension of the array B. ldb >= max(1, n).
inoutCOn entry, C contains the right-hand-side of the first matrix equation in (1) or (3). On exit, if IJOB = 0, 1 or 2, C has been overwritten by the solution R. If IJOB = 3 or 4 and TRANS = ‘N’, C holds R, the solution achieved during the computation of the Dif-estimate. Array of dimension (ldc, n).
inldcThe leading dimension of the array C. ldc >= max(1, m).
inDThe upper triangular matrix D. Array of dimension (ldd, m).
inlddThe leading dimension of the array D. ldd >= max(1, m).
inEThe upper triangular matrix E. Array of dimension (lde, n).
inldeThe leading dimension of the array E. lde >= max(1, n).
inoutFOn entry, F contains the right-hand-side of the second matrix equation in (1) or (3). On exit, if IJOB = 0, 1 or 2, F has been overwritten by the solution L. If IJOB = 3 or 4 and TRANS = ‘N’, F holds L, the solution achieved during the computation of the Dif-estimate. Array of dimension (ldf, n).
inldfThe leading dimension of the array F. ldf >= max(1, m).
outscaleOn exit SCALE is the scaling factor in (1) or (3). If 0 < SCALE < 1, C and F hold the solutions R and L, resp., to a slightly perturbed system but the input matrices A, B, D and E have not been changed. If SCALE = 0, C and F hold the solutions R and L, respectively, to the homogeneous system with C = F = 0. Normally, SCALE = 1.
outdifOn exit DIF is the reciprocal of a lower bound of the reciprocal of the Dif-function, i.e. DIF is an upper bound of Dif[(A,D), (B,E)] = sigma_min(Z), where Z as in (2). IF IJOB = 0 or TRANS = ‘T’, DIF is not touched.
outworkArray of dimension (max(1, lwork)). On exit, if INFO = 0, work[0] returns the optimal lwork.
inlworkThe dimension of the array work. lwork >= 1. If IJOB = 1 or 2 and TRANS = ‘N’, lwork >= max(1,2*m*n). If lwork = -1, then a workspace query is assumed; the routine only calculates the optimal size of the work array, returns this value as the first entry of the work array, and no error message related to lwork is issued by XERBLA.
outiworkInteger array of dimension (m+n+6).
outinfo= 0: successful exit
< 0: If info = -i, the i-th argument had an illegal value.
> 0: (A, D) and (B, E) have common or close eigenvalues.
void stgsyl(
const char* trans,
const INT ijob,
const INT m,
const INT n,
const f32* restrict A,
const INT lda,
const f32* restrict B,
const INT ldb,
f32* restrict C,
const INT ldc,
const f32* restrict D,
const INT ldd,
const f32* restrict E,
const INT lde,
f32* restrict F,
const INT ldf,
f32* scale,
f32* dif,
f32* restrict work,
const INT lwork,
INT* restrict iwork,
INT* info
);
Functions
-
void dtgsyl(const char *trans, const INT ijob, const INT m, const INT n, const f64 *restrict A, const INT lda, const f64 *restrict B, const INT ldb, f64 *restrict C, const INT ldc, const f64 *restrict D, const INT ldd, const f64 *restrict E, const INT lde, f64 *restrict F, const INT ldf, f64 *scale, f64 *dif, f64 *restrict work, const INT lwork, INT *restrict iwork, INT *info)#
DTGSYL solves the generalized Sylvester equation:
where R and L are unknown m-by-n matrices, (A, D), (B, E) and (C, F) are given matrix pairs of size m-by-m, n-by-n and m-by-n, respectively, with real entries. (A, D) and (B, E) must be in generalized (real) Schur canonical form, i.e. A, B are upper quasi triangular and D, E are upper triangular.A * R - L * B = scale * C (1) D * R - L * E = scale * F
The solution (R, L) overwrites (C, F). 0 <= SCALE <= 1 is an output scaling factor chosen to avoid overflow.
In matrix notation (1) is equivalent to solve Zx = scale b, where Z is defined as
Here Ik is the identity matrix of size k and X**T is the transpose of X. kron(X, Y) is the Kronecker product between the matrices X and Y.Z = [ kron(In, A) -kron(B**T, Im) ] (2) [ kron(In, D) -kron(E**T, Im) ].
If TRANS = ‘T’, DTGSYL solves the transposed system Z**T*y = scale*b, which is equivalent to solve for R and L in
This case (TRANS = ‘T’) is used to compute an one-norm-based estimate of Dif[(A,D), (B,E)], the separation between the matrix pairs (A,D) and (B,E), using DLACON.A**T * R + D**T * L = scale * C (3) R * B**T + L * E**T = scale * -F
If IJOB >= 1, DTGSYL computes a Frobenius norm-based estimate of Dif[(A,D),(B,E)]. That is, the reciprocal of a lower bound on the reciprocal of the smallest singular value of Z. See [1-2] for more information.
This is a level 3 BLAS algorithm.
Parameters
intrans‘N’: solve the generalized Sylvester equation (1). ‘T’: solve the ‘transposed’ system (3).
inijobSpecifies what kind of functionality to be performed. = 0: solve (1) only. = 1: The functionality of 0 and 3. = 2: The functionality of 0 and 4. = 3: Only an estimate of Dif[(A,D), (B,E)] is computed. (look ahead strategy IJOB = 1 is used). = 4: Only an estimate of Dif[(A,D), (B,E)] is computed. ( DGECON on sub-systems is used ). Not referenced if TRANS = ‘T’.
inmThe order of the matrices A and D, and the row dimension of the matrices C, F, R and L.
innThe order of the matrices B and E, and the column dimension of the matrices C, F, R and L.
inAThe upper quasi triangular matrix A. Array of dimension (lda, m).
inldaThe leading dimension of the array A. lda >= max(1, m).
inBThe upper quasi triangular matrix B. Array of dimension (ldb, n).
inldbThe leading dimension of the array B. ldb >= max(1, n).
inoutCOn entry, C contains the right-hand-side of the first matrix equation in (1) or (3). On exit, if IJOB = 0, 1 or 2, C has been overwritten by the solution R. If IJOB = 3 or 4 and TRANS = ‘N’, C holds R, the solution achieved during the computation of the Dif-estimate. Array of dimension (ldc, n).
inldcThe leading dimension of the array C. ldc >= max(1, m).
inDThe upper triangular matrix D. Array of dimension (ldd, m).
inlddThe leading dimension of the array D. ldd >= max(1, m).
inEThe upper triangular matrix E. Array of dimension (lde, n).
inldeThe leading dimension of the array E. lde >= max(1, n).
inoutFOn entry, F contains the right-hand-side of the second matrix equation in (1) or (3). On exit, if IJOB = 0, 1 or 2, F has been overwritten by the solution L. If IJOB = 3 or 4 and TRANS = ‘N’, F holds L, the solution achieved during the computation of the Dif-estimate. Array of dimension (ldf, n).
inldfThe leading dimension of the array F. ldf >= max(1, m).
outscaleOn exit SCALE is the scaling factor in (1) or (3). If 0 < SCALE < 1, C and F hold the solutions R and L, resp., to a slightly perturbed system but the input matrices A, B, D and E have not been changed. If SCALE = 0, C and F hold the solutions R and L, respectively, to the homogeneous system with C = F = 0. Normally, SCALE = 1.
outdifOn exit DIF is the reciprocal of a lower bound of the reciprocal of the Dif-function, i.e. DIF is an upper bound of Dif[(A,D), (B,E)] = sigma_min(Z), where Z as in (2). IF IJOB = 0 or TRANS = ‘T’, DIF is not touched.
outworkArray of dimension (max(1, lwork)). On exit, if INFO = 0, work[0] returns the optimal lwork.
inlworkThe dimension of the array work. lwork >= 1. If IJOB = 1 or 2 and TRANS = ‘N’, lwork >= max(1,2*m*n). If lwork = -1, then a workspace query is assumed; the routine only calculates the optimal size of the work array, returns this value as the first entry of the work array, and no error message related to lwork is issued by XERBLA.
outiworkInteger array of dimension (m+n+6).
outinfo= 0: successful exit
< 0: If info = -i, the i-th argument had an illegal value.
> 0: (A, D) and (B, E) have common or close eigenvalues.
void dtgsyl(
const char* trans,
const INT ijob,
const INT m,
const INT n,
const f64* restrict A,
const INT lda,
const f64* restrict B,
const INT ldb,
f64* restrict C,
const INT ldc,
const f64* restrict D,
const INT ldd,
const f64* restrict E,
const INT lde,
f64* restrict F,
const INT ldf,
f64* scale,
f64* dif,
f64* restrict work,
const INT lwork,
INT* restrict iwork,
INT* info
);
Functions
-
void ctgsyl(const char *trans, const INT ijob, const INT m, const INT n, const c64 *A, const INT lda, const c64 *B, const INT ldb, c64 *C, const INT ldc, const c64 *D, const INT ldd, const c64 *E, const INT lde, c64 *F, const INT ldf, f32 *scale, f32 *dif, c64 *work, const INT lwork, INT *iwork, INT *info)#
CTGSYL solves the generalized Sylvester equation:
where R and L are unknown m-by-n matrices, (A, D), (B, E) and (C, F) are given matrix pairs of size m-by-m, n-by-n and m-by-n, respectively, with complex entries. A, B, D and E are upper triangular (i.e., (A,D) and (B,E) in generalized Schur form).A * R - L * B = scale * C (1) D * R - L * E = scale * F
The solution (R, L) overwrites (C, F). 0 <= SCALE <= 1 is an output scaling factor chosen to avoid overflow.
In matrix notation (1) is equivalent to solve Zx = scale*b, where Z is defined as
Here Ix is the identity matrix of size x and X**H is the conjugate transpose of X. Kron(X, Y) is the Kronecker product between the matrices X and Y.Z = [ kron(In, A) -kron(B**H, Im) ] (2) [ kron(In, D) -kron(E**H, Im) ],
If TRANS = ‘C’, y in the conjugate transposed system Z**H *y = scale*b is solved for, which is equivalent to solve for R and L in
This case (TRANS = ‘C’) is used to compute an one-norm-based estimate of Dif[(A,D), (B,E)], the separation between the matrix pairs (A,D) and (B,E), using CLACON.A**H * R + D**H * L = scale * C (3) R * B**H + L * E**H = scale * -F
If IJOB >= 1, CTGSYL computes a Frobenius norm-based estimate of Dif[(A,D),(B,E)]. That is, the reciprocal of a lower bound on the reciprocal of the smallest singular value of Z.
This is a level-3 BLAS algorithm.
Parameters
intrans‘N’: solve the generalized Sylvester equation (1). ‘C’: solve the conjugate transposed system (3).
inijobSpecifies what kind of functionality to be performed. = 0: solve (1) only. = 1: The functionality of 0 and 3. = 2: The functionality of 0 and 4. = 3: Only an estimate of Dif[(A,D), (B,E)] is computed. (look ahead strategy is used). = 4: Only an estimate of Dif[(A,D), (B,E)] is computed. (CGECON on sub-systems is used). Not referenced if TRANS = ‘C’.
inmThe order of the matrices A and D, and the row dimension of the matrices C, F, R and L.
innThe order of the matrices B and E, and the column dimension of the matrices C, F, R and L.
inAThe upper triangular matrix A. Array of dimension (lda, m).
inldaThe leading dimension of the array A. lda >= max(1, m).
inBThe upper triangular matrix B. Array of dimension (ldb, n).
inldbThe leading dimension of the array B. ldb >= max(1, n).
inoutCOn entry, C contains the right-hand-side of the first matrix equation in (1) or (3). On exit, if IJOB = 0, 1 or 2, C has been overwritten by the solution R. If IJOB = 3 or 4 and TRANS = ‘N’, C holds R, the solution achieved during the computation of the Dif-estimate. Array of dimension (ldc, n).
inldcThe leading dimension of the array C. ldc >= max(1, m).
inDThe upper triangular matrix D. Array of dimension (ldd, m).
inlddThe leading dimension of the array D. ldd >= max(1, m).
inEThe upper triangular matrix E. Array of dimension (lde, n).
inldeThe leading dimension of the array E. lde >= max(1, n).
inoutFOn entry, F contains the right-hand-side of the second matrix equation in (1) or (3). On exit, if IJOB = 0, 1 or 2, F has been overwritten by the solution L. If IJOB = 3 or 4 and TRANS = ‘N’, F holds L, the solution achieved during the computation of the Dif-estimate. Array of dimension (ldf, n).
inldfThe leading dimension of the array F. ldf >= max(1, m).
outscaleOn exit SCALE is the scaling factor in (1) or (3). If 0 < SCALE < 1, C and F hold the solutions R and L, resp., to a slightly perturbed system but the input matrices A, B, D and E have not been changed. If SCALE = 0, C and F hold the solutions R and L, respectively, to the homogeneous system with C = F = 0. Normally, SCALE = 1.
outdifOn exit DIF is the reciprocal of a lower bound of the reciprocal of the Dif-function, i.e. DIF is an upper bound of Dif[(A,D), (B,E)] = sigma_min(Z), where Z as in (2). IF IJOB = 0 or TRANS = ‘C’, DIF is not referenced.
outworkArray of dimension (max(1, lwork)). On exit, if INFO = 0, work[0] returns the optimal lwork.
inlworkThe dimension of the array work. lwork >= 1. If IJOB = 1 or 2 and TRANS = ‘N’, lwork >= max(1,2*m*n). If lwork = -1, then a workspace query is assumed; the routine only calculates the optimal size of the work array, returns this value as the first entry of the work array, and no error message related to lwork is issued by XERBLA.
outiworkInteger array of dimension (m+n+2).
outinfo= 0: successful exit
< 0: If info = -i, the i-th argument had an illegal value.
> 0: (A, D) and (B, E) have common or very close eigenvalues.
void ctgsyl(
const char* trans,
const INT ijob,
const INT m,
const INT n,
const c64* A,
const INT lda,
const c64* B,
const INT ldb,
c64* C,
const INT ldc,
const c64* D,
const INT ldd,
const c64* E,
const INT lde,
c64* F,
const INT ldf,
f32* scale,
f32* dif,
c64* work,
const INT lwork,
INT* iwork,
INT* info
);
Functions
-
void ztgsyl(const char *trans, const INT ijob, const INT m, const INT n, const c128 *A, const INT lda, const c128 *B, const INT ldb, c128 *C, const INT ldc, const c128 *D, const INT ldd, const c128 *E, const INT lde, c128 *F, const INT ldf, f64 *scale, f64 *dif, c128 *work, const INT lwork, INT *iwork, INT *info)#
ZTGSYL solves the generalized Sylvester equation:
where R and L are unknown m-by-n matrices, (A, D), (B, E) and (C, F) are given matrix pairs of size m-by-m, n-by-n and m-by-n, respectively, with complex entries. A, B, D and E are upper triangular (i.e., (A,D) and (B,E) in generalized Schur form).A * R - L * B = scale * C (1) D * R - L * E = scale * F
The solution (R, L) overwrites (C, F). 0 <= SCALE <= 1 is an output scaling factor chosen to avoid overflow.
In matrix notation (1) is equivalent to solve Zx = scale*b, where Z is defined as
Here Ix is the identity matrix of size x and X**H is the conjugate transpose of X. Kron(X, Y) is the Kronecker product between the matrices X and Y.Z = [ kron(In, A) -kron(B**H, Im) ] (2) [ kron(In, D) -kron(E**H, Im) ],
If TRANS = ‘C’, y in the conjugate transposed system Z**H *y = scale*b is solved for, which is equivalent to solve for R and L in
This case (TRANS = ‘C’) is used to compute an one-norm-based estimate of Dif[(A,D), (B,E)], the separation between the matrix pairs (A,D) and (B,E), using ZLACON.A**H * R + D**H * L = scale * C (3) R * B**H + L * E**H = scale * -F
If IJOB >= 1, ZTGSYL computes a Frobenius norm-based estimate of Dif[(A,D),(B,E)]. That is, the reciprocal of a lower bound on the reciprocal of the smallest singular value of Z.
This is a level-3 BLAS algorithm.
Parameters
intrans‘N’: solve the generalized Sylvester equation (1). ‘C’: solve the conjugate transposed system (3).
inijobSpecifies what kind of functionality to be performed. = 0: solve (1) only. = 1: The functionality of 0 and 3. = 2: The functionality of 0 and 4. = 3: Only an estimate of Dif[(A,D), (B,E)] is computed. (look ahead strategy is used). = 4: Only an estimate of Dif[(A,D), (B,E)] is computed. (ZGECON on sub-systems is used). Not referenced if TRANS = ‘C’.
inmThe order of the matrices A and D, and the row dimension of the matrices C, F, R and L.
innThe order of the matrices B and E, and the column dimension of the matrices C, F, R and L.
inAThe upper triangular matrix A. Array of dimension (lda, m).
inldaThe leading dimension of the array A. lda >= max(1, m).
inBThe upper triangular matrix B. Array of dimension (ldb, n).
inldbThe leading dimension of the array B. ldb >= max(1, n).
inoutCOn entry, C contains the right-hand-side of the first matrix equation in (1) or (3). On exit, if IJOB = 0, 1 or 2, C has been overwritten by the solution R. If IJOB = 3 or 4 and TRANS = ‘N’, C holds R, the solution achieved during the computation of the Dif-estimate. Array of dimension (ldc, n).
inldcThe leading dimension of the array C. ldc >= max(1, m).
inDThe upper triangular matrix D. Array of dimension (ldd, m).
inlddThe leading dimension of the array D. ldd >= max(1, m).
inEThe upper triangular matrix E. Array of dimension (lde, n).
inldeThe leading dimension of the array E. lde >= max(1, n).
inoutFOn entry, F contains the right-hand-side of the second matrix equation in (1) or (3). On exit, if IJOB = 0, 1 or 2, F has been overwritten by the solution L. If IJOB = 3 or 4 and TRANS = ‘N’, F holds L, the solution achieved during the computation of the Dif-estimate. Array of dimension (ldf, n).
inldfThe leading dimension of the array F. ldf >= max(1, m).
outscaleOn exit SCALE is the scaling factor in (1) or (3). If 0 < SCALE < 1, C and F hold the solutions R and L, resp., to a slightly perturbed system but the input matrices A, B, D and E have not been changed. If SCALE = 0, C and F hold the solutions R and L, respectively, to the homogeneous system with C = F = 0. Normally, SCALE = 1.
outdifOn exit DIF is the reciprocal of a lower bound of the reciprocal of the Dif-function, i.e. DIF is an upper bound of Dif[(A,D), (B,E)] = sigma_min(Z), where Z as in (2). IF IJOB = 0 or TRANS = ‘C’, DIF is not referenced.
outworkArray of dimension (max(1, lwork)). On exit, if INFO = 0, work[0] returns the optimal lwork.
inlworkThe dimension of the array work. lwork >= 1. If IJOB = 1 or 2 and TRANS = ‘N’, lwork >= max(1,2*m*n). If lwork = -1, then a workspace query is assumed; the routine only calculates the optimal size of the work array, returns this value as the first entry of the work array, and no error message related to lwork is issued by XERBLA.
outiworkInteger array of dimension (m+n+2).
outinfo= 0: successful exit
< 0: If info = -i, the i-th argument had an illegal value.
> 0: (A, D) and (B, E) have common or very close eigenvalues.
void ztgsyl(
const char* trans,
const INT ijob,
const INT m,
const INT n,
const c128* A,
const INT lda,
const c128* B,
const INT ldb,
c128* C,
const INT ldc,
const c128* D,
const INT ldd,
const c128* E,
const INT lde,
c128* F,
const INT ldf,
f64* scale,
f64* dif,
c128* work,
const INT lwork,
INT* iwork,
INT* info
);