pub type BitReversedMatrixView<Inner> = RowIndexMappedView<BitReversalPerm, Inner>;Expand description
A matrix view that reorders its rows using bit-reversal.
This type is produced by applying BitReversibleMatrix::bit_reverse_rows()
to a DenseMatrix.
Aliased Type§
pub struct BitReversedMatrixView<Inner> {
pub index_map: BitReversalPerm,
pub inner: Inner,
}Fields§
§index_map: BitReversalPermA row index mapping that defines the number and order of visible rows.
inner: InnerThe inner matrix that holds actual data.