Trait ndarray_linalg::solve::Determinant [] [src]

pub trait Determinant<A: Scalar> {
    fn det(&self) -> Result<A>;
}

An interface for calculating determinants of matrix refs.

Required Methods

Computes the determinant of the matrix.

Implementations on Foreign Types

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

[src]

Implementors