unbdb1#
Functions
-
void cunbdb1(const INT m, const INT p, const INT q, c64 *restrict X11, const INT ldx11, c64 *restrict X21, const INT ldx21, f32 *restrict theta, f32 *restrict phi, c64 *restrict taup1, c64 *restrict taup2, c64 *restrict tauq1, c64 *restrict work, const INT lwork, INT *info)#
CUNBDB1 simultaneously bidiagonalizes the blocks of a tall and skinny matrix X with orthonormal columns:
X11 is P-by-Q, and X21 is (M-P)-by-Q. Q must be no larger than P, M-P, or M-Q. Routines CUNBDB2, CUNBDB3, and CUNBDB4 handle cases in which Q is not the minimum dimension.[ B11 ] [ X11 ] [ P1 | ] [ 0 ] [-----] = [---------] [-----] Q1**T . [ X21 ] [ | P2 ] [ B21 ] [ 0 ]
The unitary matrices P1, P2, and Q1 are P-by-P, (M-P)-by-(M-P), and (M-Q)-by-(M-Q), respectively. They are represented implicitly by Householder vectors.
B11 and B12 are Q-by-Q bidiagonal matrices represented implicitly by angles THETA, PHI.
Parameters
inmThe number of rows X11 plus the number of rows in X21.
inpThe number of rows in X11. 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 block of the matrix X to be reduced. On exit, the columns of tril(X11) specify reflectors for P1 and the rows of triu(X11,1) specify reflectors for Q1.
inldx11The leading dimension of X11. LDX11 >= P.
inoutX21Complex*16 array, dimension (LDX21,Q). On entry, the bottom block of the matrix X to be reduced. On exit, the columns of tril(X21) specify reflectors for P2.
inldx21The leading dimension of X21. LDX21 >= M-P.
outthetaSingle precision array, dimension (Q). The entries of the bidiagonal blocks B11, B21 are defined by THETA and PHI. See Further Details.
outphiSingle precision array, dimension (Q-1). The entries of the bidiagonal blocks B11, B21 are defined by 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.
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 cunbdb1(
const INT m,
const INT p,
const INT q,
c64* restrict X11,
const INT ldx11,
c64* restrict X21,
const INT ldx21,
f32* restrict theta,
f32* restrict phi,
c64* restrict taup1,
c64* restrict taup2,
c64* restrict tauq1,
c64* restrict work,
const INT lwork,
INT* info
);
Functions
-
void zunbdb1(const INT m, const INT p, const INT q, c128 *restrict X11, const INT ldx11, c128 *restrict X21, const INT ldx21, f64 *restrict theta, f64 *restrict phi, c128 *restrict taup1, c128 *restrict taup2, c128 *restrict tauq1, c128 *restrict work, const INT lwork, INT *info)#
ZUNBDB1 simultaneously bidiagonalizes the blocks of a tall and skinny matrix X with orthonormal columns:
X11 is P-by-Q, and X21 is (M-P)-by-Q. Q must be no larger than P, M-P, or M-Q. Routines ZUNBDB2, ZUNBDB3, and ZUNBDB4 handle cases in which Q is not the minimum dimension.[ B11 ] [ X11 ] [ P1 | ] [ 0 ] [-----] = [---------] [-----] Q1**T . [ X21 ] [ | P2 ] [ B21 ] [ 0 ]
The unitary matrices P1, P2, and Q1 are P-by-P, (M-P)-by-(M-P), and (M-Q)-by-(M-Q), respectively. They are represented implicitly by Householder vectors.
B11 and B12 are Q-by-Q bidiagonal matrices represented implicitly by angles THETA, PHI.
Parameters
inmThe number of rows X11 plus the number of rows in X21.
inpThe number of rows in X11. 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 block of the matrix X to be reduced. On exit, the columns of tril(X11) specify reflectors for P1 and the rows of triu(X11,1) specify reflectors for Q1.
inldx11The leading dimension of X11. LDX11 >= P.
inoutX21Complex*16 array, dimension (LDX21,Q). On entry, the bottom block of the matrix X to be reduced. On exit, the columns of tril(X21) specify reflectors for P2.
inldx21The leading dimension of X21. LDX21 >= M-P.
outthetaDouble precision array, dimension (Q). The entries of the bidiagonal blocks B11, B21 are defined by THETA and PHI. See Further Details.
outphiDouble precision array, dimension (Q-1). The entries of the bidiagonal blocks B11, B21 are defined by 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.
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 zunbdb1(
const INT m,
const INT p,
const INT q,
c128* restrict X11,
const INT ldx11,
c128* restrict X21,
const INT ldx21,
f64* restrict theta,
f64* restrict phi,
c128* restrict taup1,
c128* restrict taup2,
c128* restrict tauq1,
c128* restrict work,
const INT lwork,
INT* info
);