Expand description
Permutation matrices.
Traits§
- Index
- Trait for unsigned integers that can be indexed with.
- Signed
Index - Trait for signed integers corresponding to the ones satisfying
Index
.
Functions§
- permute_
cols - Computes a permutation of the columns of the source matrix using the given permutation, and stores the result in the destination matrix.
- permute_
cols_ in_ place - Computes a permutation of the columns of the matrix using the given permutation, and stores the result in the same matrix.
- permute_
cols_ in_ place_ req - Computes the size and alignment of required workspace for applying a column permutation to a matrix in place.
- permute_
rows - Computes a permutation of the rows of the source matrix using the given permutation, and stores the result in the destination matrix.
- permute_
rows_ in_ place - Computes a permutation of the rows of the matrix using the given permutation, and stores the result in the same matrix.
- permute_
rows_ in_ place_ req - Computes the size and alignment of required workspace for applying a row permutation to a matrix in place.
- swap_
cols - Swaps the two columns at indices
a
andb
in the given matrix. - swap_
rows - Swaps the two rows at indices
a
andb
in the given matrix.
Type Aliases§
- Permutation
- Owned permutation.
- Permutation
Mut - Mutable permutation view.
- Permutation
Ref - Immutable permutation view.