lapll#
Functions
-
void slapll(const INT n, f32 *restrict x, const INT incx, f32 *restrict y, const INT incy, f32 *ssmin)#
Given two column vectors X and Y, let.
The subroutine first computes the QR factorization of A = Q*R, and then computes the SVD of the 2-by-2 upper triangular matrix R. The smaller singular value of R is returned in SSMIN, which is used as the measurement of the linear dependency of the vectors X and Y.A = ( X Y ).
Parameters
innThe length of the vectors X and Y.
inoutxOn entry, X contains the N-vector X. On exit, X is overwritten.
inincxThe increment between successive elements of X. INCX > 0.
inoutyOn entry, Y contains the N-vector Y. On exit, Y is overwritten.
inincyThe increment between successive elements of Y. INCY > 0.
outssminThe smallest singular value of the N-by-2 matrix A = ( X Y ).
void slapll(
const INT n,
f32* restrict x,
const INT incx,
f32* restrict y,
const INT incy,
f32* ssmin
);
Functions
-
void dlapll(const INT n, f64 *restrict x, const INT incx, f64 *restrict y, const INT incy, f64 *ssmin)#
Given two column vectors X and Y, let.
The subroutine first computes the QR factorization of A = Q*R, and then computes the SVD of the 2-by-2 upper triangular matrix R. The smaller singular value of R is returned in SSMIN, which is used as the measurement of the linear dependency of the vectors X and Y.A = ( X Y ).
Parameters
innThe length of the vectors X and Y.
inoutxOn entry, X contains the N-vector X. On exit, X is overwritten.
inincxThe increment between successive elements of X. INCX > 0.
inoutyOn entry, Y contains the N-vector Y. On exit, Y is overwritten.
inincyThe increment between successive elements of Y. INCY > 0.
outssminThe smallest singular value of the N-by-2 matrix A = ( X Y ).
void dlapll(
const INT n,
f64* restrict x,
const INT incx,
f64* restrict y,
const INT incy,
f64* ssmin
);
Functions
-
void clapll(const INT n, c64 *restrict x, const INT incx, c64 *restrict y, const INT incy, f32 *ssmin)#
Given two column vectors X and Y, let.
The subroutine first computes the QR factorization of A = Q*R, and then computes the SVD of the 2-by-2 upper triangular matrix R. The smaller singular value of R is returned in SSMIN, which is used as the measurement of the linear dependency of the vectors X and Y.A = ( X Y ).
Parameters
innThe length of the vectors X and Y.
inoutxOn entry, X contains the N-vector X. On exit, X is overwritten.
inincxThe increment between successive elements of X. INCX > 0.
inoutyOn entry, Y contains the N-vector Y. On exit, Y is overwritten.
inincyThe increment between successive elements of Y. INCY > 0.
outssminThe smallest singular value of the N-by-2 matrix A = ( X Y ).
void clapll(
const INT n,
c64* restrict x,
const INT incx,
c64* restrict y,
const INT incy,
f32* ssmin
);
Functions
-
void zlapll(const INT n, c128 *restrict x, const INT incx, c128 *restrict y, const INT incy, f64 *ssmin)#
Given two column vectors X and Y, let.
The subroutine first computes the QR factorization of A = Q*R, and then computes the SVD of the 2-by-2 upper triangular matrix R. The smaller singular value of R is returned in SSMIN, which is used as the measurement of the linear dependency of the vectors X and Y.A = ( X Y ).
Parameters
innThe length of the vectors X and Y.
inoutxOn entry, X contains the N-vector X. On exit, X is overwritten.
inincxThe increment between successive elements of X. INCX > 0.
inoutyOn entry, Y contains the N-vector Y. On exit, Y is overwritten.
inincyThe increment between successive elements of Y. INCY > 0.
outssminThe smallest singular value of the N-by-2 matrix A = ( X Y ).
void zlapll(
const INT n,
c128* restrict x,
const INT incx,
c128* restrict y,
const INT incy,
f64* ssmin
);