pub fn unbalance<T, D>(
m: &mut Matrix<T, D, D, <DefaultAllocator as Allocator<T, D, D>>::Buffer>,
d: &Matrix<T, D, Const<1>, <DefaultAllocator as Allocator<T, D>>::Buffer>,
)
Expand description
Computes in-place D * m * D.inverse()
, where D
is the matrix with diagonal d
.