[][src]Crate numb_rs

Macros

mat

With a focus on being concise: This macro will create a matrix using syntax similar to matlab A semicolon ';' represends a new matrix row

Structs

Matrix

a matrix is a vec with dimensional properties (m x n) m the vertical length (rows) n represents the horizontal length (columns) it is stored as a row-major vector in line with C standards The matrix uses zero referencing. This method is preferable over nested vectors as during operations such as matrix transposition the vector does not change length.

MatrixT

This struct references the actual matrix but is used to notify certain methods that the transpose should be indexed instead of the original