Type Definition jamml::core::Mat

source ·
pub type Mat<T> = Vec<Vec<T>>;
Expand description

For now, a matrix is a vector of vectors of numbers

When I change this, it’ll probably be easyer to rewrite from scratch. Although their are probable considerable preformance gains to be made from a cleverer definition.