det_permutations

Function det_permutations 

Source
pub fn det_permutations<T>(a: &DSlice<T, 2, Dense>) -> T
where T: ComplexFloat + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Copy + Default,
Expand description

Computes the determinant of an n×n matrix using the Leibniz formula. Very slow (O(n!)), only for testing / small matrices.