pub fn pseudoinverse_from_svd_with_tolerance<T: ComplexField>(
pinv: MatMut<'_, T>,
s: DiagRef<'_, T>,
u: MatRef<'_, T>,
v: MatRef<'_, T>,
abs_tol: T::Real,
rel_tol: T::Real,
par: Par,
stack: &mut MemStack,
)Expand description
computes a self-adjoint matrix’s pseudoinverse, given the svd factors $S$, $U$ and $V$, and tolerance parameters for determining zero singular values