Trait lowdim::Matrix [−][src]
pub trait Matrix<S> where
S: Integer,
Self: Clone,
Self: MatrixOps<S, Self>,
Self: for<'a> MatrixOps<S, &'a Self>,
Self: MatrixOps<S, Self::V, Self::V>,
Self: for<'a> MatrixOps<S, &'a Self::V, Self::V>, {
type V: Vector<S>;
fn with<F>(f: F) -> Self
where
F: Fn(usize, usize) -> S;
fn zero() -> Self { ... }
fn unit() -> Self { ... }
}Expand description
Required traits and operations for matrices.
