Function det

Source
pub fn det<T>(input: &Array<T>) -> (f64, f64)
Expand description

Find the determinant of the matrix

§Parameters

  • input is the input matrix

§Return Values

A tuple of 32-bit floating point values.

If the input matrix is non-complex type, only first values of tuple contains the result.