Function rgsl::linear_algebra::HH_solve[][src]

pub fn HH_solve(a: MatrixF64, b: &VectorF64, x: &mut VectorF64) -> Value
Expand description

This function solves the system A x = b directly using Householder transformations. On output the solution is stored in x and b is not modified. The matrix A is destroyed by the Householder transformations.