Trait matrix::Matrix [] [src]

pub trait Matrix: Into<Conventional<Self::Element>> + Size {
    type Element: Element;
    fn nonzeros(&self) -> usize;
fn zero<S: Size>(_: S) -> Self; }

A matrix.

Associated Types

The element type.

Required Methods

Count nonzero elements.

Create a zero matrix.

Implementors