Module nalgebra::core::storage [] [src]

Abstract definition of a matrix data storage.

Traits

OwnedStorage

A matrix storage that does not contain any reference and that is stored contiguously in memory.

Storage

The trait shared by all matrix data storage.

StorageMut

Trait implemented by matrix data storage that can provide a mutable access to its elements.

Type Definitions

MulStorage

The data storage for the multiplication of two matrices with dimensions (R1, C1) on the left hand side, and with C2 columns on the right hand side.

Owned

The owned data storage that can be allocated from S.

SumStorage

The data storage for the sum of two matrices with dimensions (R1, C1) and (R2, C2).

TrMulStorage

The data storage for the multiplication of two matrices with dimensions (R1, C1) on the left hand side, and with C2 columns on the right hand side. The first matrix is implicitly transposed.