Struct ratio_matrix::MatrixSlice

source ·
pub struct MatrixSlice<'a, C> { /* private fields */ }
Expand description

Slice of a matrix.

Implementations§

source§

impl<'a, C> MatrixSlice<'a, C>

source

pub fn new( values: &'a [C], n_cols: usize, slice_range: MatrixRange, ) -> Result<Self, MatrixSliceError>

Create a new slice from a matrix. Takes a reference to the input values’ slice and the number of columns in each row as well as the intended range of the slice.

source

pub fn index<T: Into<MatrixCoordinates>>( &self, coordinates: T, ) -> Result<usize, CoordinatesOutOfBoundsError>

Get the index for item access in the reference slice. The provided coordinates should be with respect to the original input data!

source§

impl<'a, C> MatrixSlice<'a, C>
where C: Clone + Default,

source

pub fn to_matrix(&self) -> Matrix<C>

Clone the data into this slice into a matrix of it’s own size.

Trait Implementations§

source§

impl<'a, C: Clone> Clone for MatrixSlice<'a, C>

source§

fn clone(&self) -> MatrixSlice<'a, C>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a, C: Debug> Debug for MatrixSlice<'a, C>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, C: Default> Default for MatrixSlice<'a, C>

source§

fn default() -> MatrixSlice<'a, C>

Returns the “default value” for a type. Read more
source§

impl<'a, C> Domain2D for MatrixSlice<'a, C>

source§

fn row_range(&self) -> Range<usize>

Range of rows included in this object’s domain.
source§

fn col_range(&self) -> Range<usize>

Range of columns included in this object’s domain.
source§

fn range(&self) -> MatrixRange

The area spanned by this domain.
source§

fn start(&self) -> MatrixCoordinates

Starting coordinate of this domain (inclusive).
source§

fn end(&self) -> MatrixCoordinates

Ending coordinate of this domain (exclusive).
source§

fn middle(&self) -> (f64, f64)

The middle point of this cluster as a tuple of (rows, columns), fractional.
source§

impl<'a, C> MatrixRef<C> for MatrixSlice<'a, C>

source§

fn get<T: Into<MatrixCoordinates>>( &self, coordinates: T, ) -> Result<&C, CoordinatesOutOfBoundsError>

Get a matrix value at this coordinate.

Auto Trait Implementations§

§

impl<'a, C> Freeze for MatrixSlice<'a, C>

§

impl<'a, C> RefUnwindSafe for MatrixSlice<'a, C>
where C: RefUnwindSafe,

§

impl<'a, C> Send for MatrixSlice<'a, C>
where C: Sync,

§

impl<'a, C> Sync for MatrixSlice<'a, C>
where C: Sync,

§

impl<'a, C> Unpin for MatrixSlice<'a, C>

§

impl<'a, C> UnwindSafe for MatrixSlice<'a, C>
where C: RefUnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<D> Dimensions2D for D
where D: Domain2D,

source§

fn n_rows(&self) -> usize

Number of rows in the output.
source§

fn n_cols(&self) -> usize

Number of columns in the output.
source§

fn dimensions(&self) -> (usize, usize)

Dimensions of the output as a tuple of (rows, columns).
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.