Expand description
Matrix and all related.
Modules§
- exposed
- Exposed namespace of the module.
- fns
- general
- orphan
- Orphan namespace of the module.
- own
- Own namespace of the module.
- prelude
- Prelude to use essentials:
use my_module::prelude::*.
Structs§
- Descriptor
Order Column Major - Ordinary coordinates with column-major ordering.
- Descriptor
Order RowMajor - Ordinary coordinates with row-major ordering.
- Mat
- A matrix structure.
Traits§
- Descriptor
- Descriptor of a matrix, which describe coordinate system used, its ordering ( row-major/column-major ) and other attributes.
- MatEl
- MatWith
Shape - A trait indicate that matrix in case of referencing it can be interpreted as such having specified shape
ROWS x COLS. - MatWith
Shape Mut - A trait indicate that matrix in case of mutable referencing it can be interpreted as such having specified shape
ROWS x COLS. - Order
- Ordering of scalars in buffer of matrix, either row-major or column-major.
- Order
Column Major - Column-major ordering of scalars in buffer of matrix.
- Order
RowMajor - Row-major ordering of scalars in buffer of matrix.