Matrix

Type Alias Matrix 

Source
pub type Matrix<T> = MatrixBase<Box<[T]>>;
Expand description

Represents an owning, 2-dimensional view of a contiguous block of memory, interpreted as a matrix in row-major order.

Aliased Typeยง

pub struct Matrix<T> { /* private fields */ }