orbdb3#
Functions
-
void sorbdb3(const INT m, const INT p, const INT q, f32 *restrict X11, const INT ldx11, f32 *restrict X21, const INT ldx21, f32 *restrict theta, f32 *restrict phi, f32 *restrict taup1, f32 *restrict taup2, f32 *restrict tauq1, f32 *restrict work, const INT lwork, INT *info)#
SORBDB3 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. M-P must be no larger than P, Q, or M-Q.[ B11 ] [ X11 ] [ P1 | ] [ 0 ] [-----] = [---------] [-----] Q1**T . [ X21 ] [ | P2 ] [ B21 ] [ 0 ]
Parameters
inmThe number of rows X11 plus the number of rows in X21.
inpThe number of rows in X11. 0 <= p <= m. m-p <= min(p, q, m-q).
inqThe number of columns in X11 and X21. 0 <= q <= m.
inoutX11Double precision 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.
inoutX21Double precision 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.
outphiDouble precision array, dimension (q-1). The entries of the bidiagonal blocks B11, B21 are defined by theta and phi.
outtaup1Double precision array, dimension (p). The scalar factors of the elementary reflectors that define P1.
outtaup2Double precision array, dimension (m-p). The scalar factors of the elementary reflectors that define P2.
outtauq1Double precision array, dimension (q). The scalar factors of the elementary reflectors that define Q1.
outworkDouble precision array, dimension (lwork).
inlworkThe dimension of the array work. lwork >= m-q. If lwork = -1, then a workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void sorbdb3(
const INT m,
const INT p,
const INT q,
f32* restrict X11,
const INT ldx11,
f32* restrict X21,
const INT ldx21,
f32* restrict theta,
f32* restrict phi,
f32* restrict taup1,
f32* restrict taup2,
f32* restrict tauq1,
f32* restrict work,
const INT lwork,
INT* info
);
Functions
-
void dorbdb3(const INT m, const INT p, const INT q, f64 *restrict X11, const INT ldx11, f64 *restrict X21, const INT ldx21, f64 *restrict theta, f64 *restrict phi, f64 *restrict taup1, f64 *restrict taup2, f64 *restrict tauq1, f64 *restrict work, const INT lwork, INT *info)#
DORBDB3 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. M-P must be no larger than P, Q, or M-Q.[ B11 ] [ X11 ] [ P1 | ] [ 0 ] [-----] = [---------] [-----] Q1**T . [ X21 ] [ | P2 ] [ B21 ] [ 0 ]
Parameters
inmThe number of rows X11 plus the number of rows in X21.
inpThe number of rows in X11. 0 <= p <= m. m-p <= min(p, q, m-q).
inqThe number of columns in X11 and X21. 0 <= q <= m.
inoutX11Double precision 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.
inoutX21Double precision 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.
outphiDouble precision array, dimension (q-1). The entries of the bidiagonal blocks B11, B21 are defined by theta and phi.
outtaup1Double precision array, dimension (p). The scalar factors of the elementary reflectors that define P1.
outtaup2Double precision array, dimension (m-p). The scalar factors of the elementary reflectors that define P2.
outtauq1Double precision array, dimension (q). The scalar factors of the elementary reflectors that define Q1.
outworkDouble precision array, dimension (lwork).
inlworkThe dimension of the array work. lwork >= m-q. If lwork = -1, then a workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void dorbdb3(
const INT m,
const INT p,
const INT q,
f64* restrict X11,
const INT ldx11,
f64* restrict X21,
const INT ldx21,
f64* restrict theta,
f64* restrict phi,
f64* restrict taup1,
f64* restrict taup2,
f64* restrict tauq1,
f64* restrict work,
const INT lwork,
INT* info
);