pub fn householder_transform(v: &mut VectorF64) -> f64
Expand description

This function prepares a Householder transformation P = I - \tau v v^T which can be used to zero all the elements of the input vector except the first. On output the transformation is stored in the vector v and the scalar \tau is returned.