pub fn SV_decomp_jacobi(
    a: &mut MatrixF64,
    v: &mut MatrixF64,
    s: &mut VectorF64
) -> Value
Expand description

This function computes the SVD of the M-by-N matrix A using one-sided Jacobi orthogonalization for M >= N. The Jacobi method can compute singular values to higher relative accuracy than Golub-Reinsch algorithms (see references for details).