unbdb2#
Functions
-
void cunbdb2(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)#
CUNBDB2 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. P must be no larger than M-P, Q, or M-Q. Routines CUNBDB1, CUNBDB3, and CUNBDB4 handle cases in which P 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 P-by-P 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 <= min(M-P,Q,M-Q).
inqThe number of columns in X11 and X21. 0 <= Q <= M.
inoutX11Complex 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 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 array, dimension (p-1). The scalar factors of the elementary reflectors that define P1.
outtaup2Complex array, dimension (q). The scalar factors of the elementary reflectors that define P2.
outtauq1Complex array, dimension (q). The scalar factors of the elementary reflectors that define Q1.
outworkComplex 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 cunbdb2(
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 zunbdb2(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)#
ZUNBDB2 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. P must be no larger than M-P, Q, or M-Q. Routines ZUNBDB1, ZUNBDB3, and ZUNBDB4 handle cases in which P 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 P-by-P 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 <= min(M-P,Q,M-Q).
inqThe number of columns in X11 and X21. 0 <= Q <= M.
inoutX11Complex 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 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 array, dimension (p-1). The scalar factors of the elementary reflectors that define P1.
outtaup2Complex array, dimension (q). The scalar factors of the elementary reflectors that define P2.
outtauq1Complex array, dimension (q). The scalar factors of the elementary reflectors that define Q1.
outworkComplex 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 zunbdb2(
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
);