Function rgsl::linear_algebra::QR_Qvec

source ·
pub fn QR_Qvec(qr: &MatrixF64, tau: &VectorF64, v: &mut VectorF64) -> Value
Expand description

This function applies the matrix Q encoded in the decomposition (QR,tau) to the vector v, storing the result Q v in v. The matrix multiplication is carried out directly using the encoding of the Householder vectors without needing to form the full matrix Q.