Trait ndarray_linalg::solve::DeterminantInto [] [src]

pub trait DeterminantInto<A: Scalar> {
    fn det_into(self) -> Result<A>;
}

An interface for calculating determinants of matrices.

Required Methods

Computes the determinant of the matrix.

Implementations on Foreign Types

impl<A, S> DeterminantInto<A> for ArrayBase<S, Ix2> where
    A: Scalar,
    S: DataMut<Elem = A>, 
[src]

[src]

Implementors