Module numb_rs::dense[][src]

Expand description

module for the dense matrix type

Structs

a dense matrix stores all the values of the 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 similarly to C The matrix uses zero referencing A dense matrix elements can be referenced by element

Traits