pub fn apply_centering<T: SvdFloat>(
rhs: ArrayView2<'_, T>,
out: ArrayViewMut2<'_, T>,
trans: bool,
means: ArrayView1<'_, T>,
)Expand description
Subtract the rank-1 centering term from an uncentered product. Public so an
implementor writing a fused mul_dense_centered can reuse it.