Expand description
Matrix representations.
Structs§
- Column major layout.
- Row major layout.
- A matrix represented by a flat one-dimensional vector
V1
. - A column major matrix.
- A row major matrix.
Traits§
- A matrix or a matrix view over a
D2
vector with rectangular cardinality, or over a flattened representation by aD1
vector. - A column major matrix.
- A mutable column major matrix.
- A mutable matrix view over a
D2
vector with rectangular cardinality, or over a flattened representation by aD1
vector. - A row major matrix.
- A mutable row major matrix.
- Creates matrix views of a flat
D1
vector. - Layout for matrices with an underlying flat vector of
D1
. - Creates matrix views of a rectangular
D2
vector.
Type Aliases§
- A col-major matrix represented by a flat one-dimensional vector
V1
. - A row-major matrix represented by a flat one-dimensional vector
V1
.