pub struct StridedBase<T>where
T: DenseData,{ /* private fields */ }Expand description
A row-major strided matrix.
This is a generalization of the MatrixBase class as it does not mandate a dense
layout in memory.
|<------ cstride ----->|
|<-- ncols -->|
+-------------+
slice 0 -> | a0 a1 a2 a3 | a4 a5 a6 ^
slice 1 -> | b0 b1 b2 b3 | b4 b5 b6 |
slice 2 -> | c0 c1 c2 c3 | c4 c5 c6 nrows
slice 3 -> | d0 d1 d2 d3 | d4 d5 d6 |
slice 4 -> | e0 e1 e2 e3 | e4 e5 e6 |
slicf 5 -> | f0 f1 f2 f3 | f4 f5 f6 v
+-------------+
^
|
StridedViewThis abstraction is useful when performing PQ related operations such as training or compression as it provides a convenient abstraction for working with columnar subsets of dense data in-place.
Implementations§
Source§impl<'a, T> StridedBase<&'a [T]>
impl<'a, T> StridedBase<&'a [T]>
Sourcepub fn try_shrink_from(
data: &'a [T],
nrows: usize,
ncols: usize,
cstride: usize,
) -> Result<Self, TryFromError<&'a [T]>>
pub fn try_shrink_from( data: &'a [T], nrows: usize, ncols: usize, cstride: usize, ) -> Result<Self, TryFromError<&'a [T]>>
Construct a strided view over data slice, shrinking the slice as needed.
Returns an error if data is shorter than the value returned by linear_length.
§Panics
- Panics if
cstride < ncols.
Source§impl<'a, T> StridedBase<&'a mut [T]>
impl<'a, T> StridedBase<&'a mut [T]>
Sourcepub fn try_shrink_from_mut(
data: &'a mut [T],
nrows: usize,
ncols: usize,
cstride: usize,
) -> Result<Self, TryFromError<&'a mut [T]>>
pub fn try_shrink_from_mut( data: &'a mut [T], nrows: usize, ncols: usize, cstride: usize, ) -> Result<Self, TryFromError<&'a mut [T]>>
Construct a strided view over data slice, shrinking the slice as needed.
Returns an error if data is shorter than the value returned by linear_length.
§Panics
- Panics if
cstride < ncols.
Source§impl<T> StridedBase<T>where
T: DenseData,
impl<T> StridedBase<T>where
T: DenseData,
Sourcepub fn try_from(
data: T,
nrows: usize,
ncols: usize,
cstride: usize,
) -> Result<Self, TryFromError<T>>
pub fn try_from( data: T, nrows: usize, ncols: usize, cstride: usize, ) -> Result<Self, TryFromError<T>>
Construct a strided view over data slice, shrinking the slice as needed.
Returns an error if data is not equal to the expected length as determined
by linear_length.
§Panics
- Panics if
cstride < ncols.
Sourcepub fn as_slice(&self) -> &[T::Elem]
pub fn as_slice(&self) -> &[T::Elem]
Return the underlying data as a slice.
§Note
The underlying representation for a strided matrix is not necessarily dense.
Sourcepub fn as_mut_slice(&mut self) -> &mut [T::Elem]where
T: MutDenseData,
pub fn as_mut_slice(&mut self) -> &mut [T::Elem]where
T: MutDenseData,
Return the underlying data as a slice.
§Note
The underlying representation for a strided matrix is not necessarily dense.
Sourcepub unsafe fn get_row_unchecked(&self, row: usize) -> &[T::Elem]
pub unsafe fn get_row_unchecked(&self, row: usize) -> &[T::Elem]
Returns the requested row without boundschecking.
§Safety
The following conditions must hold to avoid undefined behavior:
row < self.nrows().
Sourcepub fn row_mut(&mut self, row: usize) -> &mut [T::Elem]where
T: MutDenseData,
pub fn row_mut(&mut self, row: usize) -> &mut [T::Elem]where
T: MutDenseData,
Sourcepub unsafe fn get_row_unchecked_mut(&mut self, row: usize) -> &mut [T::Elem]where
T: MutDenseData,
pub unsafe fn get_row_unchecked_mut(&mut self, row: usize) -> &mut [T::Elem]where
T: MutDenseData,
Returns the requested row without boundschecking.
§Safety
The following conditions must hold to avoid undefined behavior:
row < self.nrows().
Sourcepub fn row_iter(&self) -> impl Iterator<Item = &[T::Elem]>
pub fn row_iter(&self) -> impl Iterator<Item = &[T::Elem]>
Return a iterator over all rows in the matrix.
Rows are yielded sequentially beginning with row 0.
§Panics
Panics if self.ncols() == 0 (because the implementation does not work correctly
in this case and it’s too corner-case to bother fixing). This restriction may
be lifted in the future.
Sourcepub fn row_iter_mut(&mut self) -> impl Iterator<Item = &mut [T::Elem]>where
T: MutDenseData,
pub fn row_iter_mut(&mut self) -> impl Iterator<Item = &mut [T::Elem]>where
T: MutDenseData,
Return a mutable iterator over all rows in the matrix.
Rows are yielded sequentially beginning with row 0.
§Panics
Panics if self.ncols() == 0 (because the implementation does not work correctly
in this case and it’s too corner-case to bother fixing). This restriction may
be lifted in the future.
Sourcepub fn as_mut_ptr(&mut self) -> *mut T::Elemwhere
T: MutDenseData,
pub fn as_mut_ptr(&mut self) -> *mut T::Elemwhere
T: MutDenseData,
Return a pointer to the base of the matrix.
Sourcepub unsafe fn get_unchecked(&self, row: usize, col: usize) -> &T::Elem
pub unsafe fn get_unchecked(&self, row: usize, col: usize) -> &T::Elem
Returns a reference to an element without boundschecking.
§Safety
The following conditions must hold to avoid undefined behavior:
row < self.nrows().col < self.ncols().
Sourcepub unsafe fn get_unchecked_mut(
&mut self,
row: usize,
col: usize,
) -> &mut T::Elemwhere
T: MutDenseData,
pub unsafe fn get_unchecked_mut(
&mut self,
row: usize,
col: usize,
) -> &mut T::Elemwhere
T: MutDenseData,
Returns a mutable reference to an element without boundschecking.
§Safety
The following conditions must hold to avoid undefined behavior:
row < self.nrows().col < self.ncols().
Sourcepub fn as_view(&self) -> StridedView<'_, T::Elem>
pub fn as_view(&self) -> StridedView<'_, T::Elem>
Return a view over the matrix.
Trait Implementations§
Source§impl<T> Clone for StridedBase<T>
impl<T> Clone for StridedBase<T>
Source§fn clone(&self) -> StridedBase<T>
fn clone(&self) -> StridedBase<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<T> Debug for StridedBase<T>
impl<T> Debug for StridedBase<T>
Source§impl<T, U> From<MatrixBase<T>> for StridedBase<U>
impl<T, U> From<MatrixBase<T>> for StridedBase<U>
Source§fn from(matrix: MatrixBase<T>) -> Self
fn from(matrix: MatrixBase<T>) -> Self
Source§impl<T> Index<(usize, usize)> for StridedBase<T>where
T: DenseData,
Return a reference to the item at entry (row, col) in the matrix.
impl<T> Index<(usize, usize)> for StridedBase<T>where
T: DenseData,
Return a reference to the item at entry (row, col) in the matrix.
§Panics
Panics if row >= self.nrows() or col >= self.ncols().
Source§impl<T> IndexMut<(usize, usize)> for StridedBase<T>where
T: MutDenseData,
Return a mutable reference to the item at entry (row, col) in the matrix.
impl<T> IndexMut<(usize, usize)> for StridedBase<T>where
T: MutDenseData,
Return a mutable reference to the item at entry (row, col) in the matrix.
§Panics
Panics if row >= self.nrows() or col >= self.ncols().
impl<T> Copy for StridedBase<T>
Auto Trait Implementations§
impl<T> Freeze for StridedBase<T>where
T: Freeze,
impl<T> RefUnwindSafe for StridedBase<T>where
T: RefUnwindSafe,
impl<T> Send for StridedBase<T>where
T: Send,
impl<T> Sync for StridedBase<T>where
T: Sync,
impl<T> Unpin for StridedBase<T>where
T: Unpin,
impl<T> UnsafeUnpin for StridedBase<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for StridedBase<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more