Module transform

Module transform 

Source
Expand description

Contains the trait transform::TransformTarget, for “consumers” of elementary matrix operations.

Structs§

DuplicateTransforms
A TransformTarget that forwards all transforms to two fixed delegates.
OffsetTransformIndex
A TransformTarget that forwards all transforms to a fixed delegate, but offsets every row/column index by a given value.
TransformCols
Wraps a SubmatrixMut to get a TransformTarget. Every transform is multiplied to the wrapped matrix from the right, i.e. applied to the cols of the matrix.
TransformListunstable-enable
Availability
TransformRows
Wraps a SubmatrixMut to get a TransformTarget. Every transform is multiplied to the wrapped matrix from the left, i.e. applied to the rows of the matrix.

Traits§

TransformTarget
A trait for a “target” that can “consume” elementary operations on matrices.