fn
lapack_qr_f32
void lapack_qr_f32(const float * A, int m, int n, float * Q, float * R, int * info)Single-precision reduced (thin) QR decomposition.
Computes where is with orthonormal columns and
is upper-triangular, . Internally calls
sgeqrf_ to produce Householder reflectors then sorgqr_ to
materialise .
Math
References
LAPACK sgeqrf_ + sorgqr_.
Parameters
Aconst float*Row-major input.
m, nintMatrix dimensions.
Qfloat*Output orthonormal-columns matrix, shape (row-major).
Rfloat*Output upper-triangular matrix, shape (row-major).
infoint*LAPACK status word.