unbdb#
Functions
-
void cunbdb(const char *trans, const char *signs, const INT m, const INT p, const INT q, c64 *restrict X11, const INT ldx11, c64 *restrict X12, const INT ldx12, c64 *restrict X21, const INT ldx21, c64 *restrict X22, const INT ldx22, f32 *restrict theta, f32 *restrict phi, c64 *restrict taup1, c64 *restrict taup2, c64 *restrict tauq1, c64 *restrict tauq2, c64 *restrict work, const INT lwork, INT *info)#
CUNBDB simultaneously bidiagonalizes the blocks of an M-by-M partitioned unitary matrix X:
X = [——–—] = [———] [————-—] [———] . [ X21 | X22 ] [ | P2 ] [ B21 | B22 0 0 ] [ | Q2 ] [ 0 | 0 0 I ][ B11 | B12 0 0 ] [ X11 | X12 ] [ P1 | ] [ 0 | 0 -I 0 ] [ Q1 | ]**H
X11 is P-by-Q. Q must be no larger than P, M-P, or M-Q. (If this is not the case, then X must be transposed and/or permuted. This can be done in constant time using the TRANS and SIGNS options. See CUNCSD for details.)
The unitary matrices P1, P2, Q1, and Q2 are P-by-P, (M-P)-by- (M-P), Q-by-Q, and (M-Q)-by-(M-Q), respectively. They are represented implicitly by Householder vectors.
B11, B12, B21, and B22 are Q-by-Q bidiagonal matrices represented implicitly by angles THETA, PHI.
Parameters
intrans= ‘T’: X, U1, U2, V1T, and V2T are stored in row-major order; otherwise: X, U1, U2, V1T, and V2T are stored in column- major order.
insigns= ‘O’: The lower-left block is made nonpositive (the “other” convention); otherwise: The upper-right block is made nonpositive (the “default” convention).
inmThe number of rows and columns in X.
inpThe number of rows in X11 and X12. 0 <= P <= M.
inqThe number of columns in X11 and X21. 0 <= Q <= MIN(P,M-P,M-Q).
inoutX11Complex*16 array, dimension (LDX11,Q). On entry, the top-left block of the unitary matrix to be reduced. On exit, the form depends on TRANS: If TRANS = ‘N’, then the columns of tril(X11) specify reflectors for P1, the rows of triu(X11,1) specify reflectors for Q1; else TRANS = ‘T’, and the rows of triu(X11) specify reflectors for P1, the columns of tril(X11,-1) specify reflectors for Q1.
inldx11The leading dimension of X11. If TRANS = ‘N’, then LDX11 >= P; else LDX11 >= Q.
inoutX12Complex*16 array, dimension (LDX12,M-Q). On entry, the top-right block of the unitary matrix to be reduced. On exit, the form depends on TRANS: If TRANS = ‘N’, then the rows of triu(X12) specify the first P reflectors for Q2; else TRANS = ‘T’, and the columns of tril(X12) specify the first P reflectors for Q2.
inldx12The leading dimension of X12. If TRANS = ‘N’, then LDX12 >= P; else LDX12 >= M-Q.
inoutX21Complex*16 array, dimension (LDX21,Q). On entry, the bottom-left block of the unitary matrix to be reduced. On exit, the form depends on TRANS: If TRANS = ‘N’, then the columns of tril(X21) specify reflectors for P2; else TRANS = ‘T’, and the rows of triu(X21) specify reflectors for P2.
inldx21The leading dimension of X21. If TRANS = ‘N’, then LDX21 >= M-P; else LDX21 >= Q.
inoutX22Complex*16 array, dimension (LDX22,M-Q). On entry, the bottom-right block of the unitary matrix to be reduced. On exit, the form depends on TRANS: If TRANS = ‘N’, then the rows of triu(X22(Q+1:M-P,P+1:M-Q)) specify the last M-P-Q reflectors for Q2, else TRANS = ‘T’, and the columns of tril(X22(P+1:M-Q,Q+1:M-P)) specify the last M-P-Q reflectors for P2.
inldx22The leading dimension of X22. If TRANS = ‘N’, then LDX22 >= M-P; else LDX22 >= M-Q.
outthetaSingle precision array, dimension (Q). The entries of the bidiagonal blocks B11, B12, B21, B22 can be computed from the angles THETA and PHI. See Further Details.
outphiSingle precision array, dimension (Q-1). The entries of the bidiagonal blocks B11, B12, B21, B22 can be computed from the angles THETA and PHI. See Further Details.
outtaup1Complex*16 array, dimension (P). The scalar factors of the elementary reflectors that define P1.
outtaup2Complex*16 array, dimension (M-P). The scalar factors of the elementary reflectors that define P2.
outtauq1Complex*16 array, dimension (Q). The scalar factors of the elementary reflectors that define Q1.
outtauq2Complex*16 array, dimension (M-Q). The scalar factors of the elementary reflectors that define Q2.
outworkComplex*16 array, dimension (LWORK).
inlworkThe dimension of the array WORK. LWORK >= M-Q. 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.
outinfo= 0: successful exit. < 0: if INFO = -i, the i-th argument had an illegal value.
void cunbdb(
const char* trans,
const char* signs,
const INT m,
const INT p,
const INT q,
c64* restrict X11,
const INT ldx11,
c64* restrict X12,
const INT ldx12,
c64* restrict X21,
const INT ldx21,
c64* restrict X22,
const INT ldx22,
f32* restrict theta,
f32* restrict phi,
c64* restrict taup1,
c64* restrict taup2,
c64* restrict tauq1,
c64* restrict tauq2,
c64* restrict work,
const INT lwork,
INT* info
);
Functions
-
void zunbdb(const char *trans, const char *signs, const INT m, const INT p, const INT q, c128 *restrict X11, const INT ldx11, c128 *restrict X12, const INT ldx12, c128 *restrict X21, const INT ldx21, c128 *restrict X22, const INT ldx22, f64 *restrict theta, f64 *restrict phi, c128 *restrict taup1, c128 *restrict taup2, c128 *restrict tauq1, c128 *restrict tauq2, c128 *restrict work, const INT lwork, INT *info)#
ZUNBDB simultaneously bidiagonalizes the blocks of an M-by-M partitioned unitary matrix X:
X = [——–—] = [———] [————-—] [———] . [ X21 | X22 ] [ | P2 ] [ B21 | B22 0 0 ] [ | Q2 ] [ 0 | 0 0 I ][ B11 | B12 0 0 ] [ X11 | X12 ] [ P1 | ] [ 0 | 0 -I 0 ] [ Q1 | ]**H
X11 is P-by-Q. Q must be no larger than P, M-P, or M-Q. (If this is not the case, then X must be transposed and/or permuted. This can be done in constant time using the TRANS and SIGNS options. See ZUNCSD for details.)
The unitary matrices P1, P2, Q1, and Q2 are P-by-P, (M-P)-by- (M-P), Q-by-Q, and (M-Q)-by-(M-Q), respectively. They are represented implicitly by Householder vectors.
B11, B12, B21, and B22 are Q-by-Q bidiagonal matrices represented implicitly by angles THETA, PHI.
Parameters
intrans= ‘T’: X, U1, U2, V1T, and V2T are stored in row-major order; otherwise: X, U1, U2, V1T, and V2T are stored in column- major order.
insigns= ‘O’: The lower-left block is made nonpositive (the “other” convention); otherwise: The upper-right block is made nonpositive (the “default” convention).
inmThe number of rows and columns in X.
inpThe number of rows in X11 and X12. 0 <= P <= M.
inqThe number of columns in X11 and X21. 0 <= Q <= MIN(P,M-P,M-Q).
inoutX11Complex*16 array, dimension (LDX11,Q). On entry, the top-left block of the unitary matrix to be reduced. On exit, the form depends on TRANS: If TRANS = ‘N’, then the columns of tril(X11) specify reflectors for P1, the rows of triu(X11,1) specify reflectors for Q1; else TRANS = ‘T’, and the rows of triu(X11) specify reflectors for P1, the columns of tril(X11,-1) specify reflectors for Q1.
inldx11The leading dimension of X11. If TRANS = ‘N’, then LDX11 >= P; else LDX11 >= Q.
inoutX12Complex*16 array, dimension (LDX12,M-Q). On entry, the top-right block of the unitary matrix to be reduced. On exit, the form depends on TRANS: If TRANS = ‘N’, then the rows of triu(X12) specify the first P reflectors for Q2; else TRANS = ‘T’, and the columns of tril(X12) specify the first P reflectors for Q2.
inldx12The leading dimension of X12. If TRANS = ‘N’, then LDX12 >= P; else LDX12 >= M-Q.
inoutX21Complex*16 array, dimension (LDX21,Q). On entry, the bottom-left block of the unitary matrix to be reduced. On exit, the form depends on TRANS: If TRANS = ‘N’, then the columns of tril(X21) specify reflectors for P2; else TRANS = ‘T’, and the rows of triu(X21) specify reflectors for P2.
inldx21The leading dimension of X21. If TRANS = ‘N’, then LDX21 >= M-P; else LDX21 >= Q.
inoutX22Complex*16 array, dimension (LDX22,M-Q). On entry, the bottom-right block of the unitary matrix to be reduced. On exit, the form depends on TRANS: If TRANS = ‘N’, then the rows of triu(X22(Q+1:M-P,P+1:M-Q)) specify the last M-P-Q reflectors for Q2, else TRANS = ‘T’, and the columns of tril(X22(P+1:M-Q,Q+1:M-P)) specify the last M-P-Q reflectors for P2.
inldx22The leading dimension of X22. If TRANS = ‘N’, then LDX22 >= M-P; else LDX22 >= M-Q.
outthetaDouble precision array, dimension (Q). The entries of the bidiagonal blocks B11, B12, B21, B22 can be computed from the angles THETA and PHI. See Further Details.
outphiDouble precision array, dimension (Q-1). The entries of the bidiagonal blocks B11, B12, B21, B22 can be computed from the angles THETA and PHI. See Further Details.
outtaup1Complex*16 array, dimension (P). The scalar factors of the elementary reflectors that define P1.
outtaup2Complex*16 array, dimension (M-P). The scalar factors of the elementary reflectors that define P2.
outtauq1Complex*16 array, dimension (Q). The scalar factors of the elementary reflectors that define Q1.
outtauq2Complex*16 array, dimension (M-Q). The scalar factors of the elementary reflectors that define Q2.
outworkComplex*16 array, dimension (LWORK).
inlworkThe dimension of the array WORK. LWORK >= M-Q. 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.
outinfo= 0: successful exit. < 0: if INFO = -i, the i-th argument had an illegal value.
void zunbdb(
const char* trans,
const char* signs,
const INT m,
const INT p,
const INT q,
c128* restrict X11,
const INT ldx11,
c128* restrict X12,
const INT ldx12,
c128* restrict X21,
const INT ldx21,
c128* restrict X22,
const INT ldx22,
f64* restrict theta,
f64* restrict phi,
c128* restrict taup1,
c128* restrict taup2,
c128* restrict tauq1,
c128* restrict tauq2,
c128* restrict work,
const INT lwork,
INT* info
);