Function pinv_with_rtol
Source pub fn pinv_with_rtol(a: &TracedTensor, rtol: f64) -> TracedTensor
Expand description
Moore-Penrose pseudoinverse via the SVD with an explicit relative cutoff.
Singular values <= rtol * max(s) are discarded.
§Examples
ⓘlet value = tenferro::pinv_with_rtol(&a, 1.0e-8);