Expand description

Generic matrix type.

Matrices are generic over some type T. If T is Numeric then the matrix can be used in a mathematical way.

Modules

Iterators over parts of a Matrix

Matrix operations.

Ways to transform and access matrices

Generic views into a matrix.

Structs

A general purpose matrix of some type. This type may implement no traits, in which case the matrix will be rather useless. If the type implements Clone most storage and accessor methods are defined and if the type implements Numeric then the matrix can be used in a mathematical way.

An error indicating failure to convert a matrix to a scalar because it is not a unit matrix.

Type Definitions

The maximum row and column lengths are usize, due to the internal storage being backed by Vec

The maximum row and column lengths are usize, due to the internal storage being backed by Vec