Skip to main content

svd_with_eps

Function svd_with_eps 

Source
pub fn svd_with_eps(
    a: &TracedTensor,
    eps: f64,
) -> (TracedTensor, TracedTensor, TracedTensor)
Expand description

Singular value decomposition with an explicit numerical epsilon.

§Examples

let (u, s, vt) = tenferro::svd_with_eps(&a, 1e-10);