Dim

Struct Dim 

Source
pub struct Dim<I>
where I: ?Sized,
{ /* private fields */ }
Expand description

Dimension description.

Dim describes the number of axes and the length of each axis in an array. It is also used as an index type.

See also the Dimension trait for its methods and operations.

§Examples

To create an array with a particular dimension, you’d just pass a tuple (in this example (3, 2) is used), which is converted to Dim by the array constructor.

use ndarray::Array2;
use ndarray::Dim;

let mut array = Array2::zeros((3, 2));
array[[0, 0]] = 1.;
assert_eq!(array.raw_dim(), Dim([3, 2]));

Implementations§

Source§

impl Dim<IxDynImpl>

Source

pub fn zeros(n: usize) -> Dim<IxDynImpl>

Create a new dimension value with n axes, all zeros

Trait Implementations§

Source§

impl Add<usize> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 1]>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: usize) -> Dim<[usize; 1]>

Performs the + operation. Read more
Source§

impl<I> Add for Dim<I>
where Dim<I>: Dimension,

Source§

type Output = Dim<I>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Dim<I>) -> Dim<I>

Performs the + operation. Read more
Source§

impl<'a, I> AddAssign<&'a Dim<I>> for Dim<I>
where Dim<I>: Dimension,

Source§

fn add_assign(&mut self, rhs: &Dim<I>)

Performs the += operation. Read more
Source§

impl AddAssign<usize> for Dim<[usize; 1]>

Source§

fn add_assign(&mut self, rhs: usize)

Performs the += operation. Read more
Source§

impl<I> AddAssign for Dim<I>
where Dim<I>: Dimension,

Source§

fn add_assign(&mut self, rhs: Dim<I>)

Performs the += operation. Read more
Source§

impl<I> Clone for Dim<I>
where I: Clone + ?Sized,

Source§

fn clone(&self) -> Dim<I>

Returns a duplicate 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<I> Debug for Dim<I>
where I: Debug,

Source§

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

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

impl<I> Default for Dim<I>
where I: Default + ?Sized,

Source§

fn default() -> Dim<I>

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

impl<'de, I> Deserialize<'de> for Dim<I>
where I: Deserialize<'de>,

Requires crate feature "serde"

Source§

fn deserialize<D>( deserializer: D, ) -> Result<Dim<I>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'de> Deserialize<'de> for Dim<IxDynImpl>

Requires crate feature "serde"

Source§

fn deserialize<D>( deserializer: D, ) -> Result<Dim<IxDynImpl>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<D> DimAdd<D> for Dim<[usize; 0]>
where D: Dimension,

Source§

type Output = D

The sum of the two dimensions.
Source§

impl<D> DimAdd<D> for Dim<IxDynImpl>
where D: Dimension,

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 1]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 2]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 3]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 4]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 2]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 3]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 4]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 5]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 3]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 4]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 5]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 4]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 5]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 5]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 3]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 2]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 3]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 1]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 2]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 3]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 1]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 2]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 3]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 1]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 2]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 1]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 2]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 2]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 2]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 0]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 1]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 2]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 3]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl Dimension for Dim<[usize; 0]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = ()

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 0]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 1]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 0]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 0]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 1]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = usize

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 0]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 2]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 1]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 1]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 2]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = (usize, usize)

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 1]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 3]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 2]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 2]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 3]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = (usize, usize, usize)

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 2]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 4]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 3]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn zeros(ndim: usize) -> Dim<[usize; 3]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 4]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = (usize, usize, usize, usize)

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 3]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 5]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 4]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 4]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 5]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = (usize, usize, usize, usize, usize)

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 4]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 6]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 5]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 5]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 6]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = (usize, usize, usize, usize, usize, usize)

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 5]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<IxDynImpl>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 6]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 6]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<IxDynImpl>

IxDyn is a “dynamic” index, pretty hard to use when indexing, and memory wasteful, but it allows an arbitrary and dynamic number of axes.

Source§

const NDIM: Option<usize> = None

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = Dim<IxDynImpl>

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<IxDynImpl>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<IxDynImpl>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<IxDynImpl> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<IxDynImpl>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

impl<I> Hash for Dim<I>
where I: Hash + ?Sized,

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Index<usize> for Dim<[usize; 0]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 0]> as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<usize> for Dim<[usize; 1]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 1]> as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<usize> for Dim<[usize; 2]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 2]> as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<usize> for Dim<[usize; 3]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 3]> as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<usize> for Dim<[usize; 4]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 4]> as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<usize> for Dim<[usize; 5]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 5]> as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<usize> for Dim<[usize; 6]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 6]> as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl Index<usize> for Dim<IxDynImpl>

Source§

type Output = <IxDynImpl as Index<usize>>::Output

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<IxDynImpl> as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for Dim<[usize; 0]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 0]> as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for Dim<[usize; 1]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 1]> as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for Dim<[usize; 2]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 2]> as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for Dim<[usize; 3]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 3]> as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for Dim<[usize; 4]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 4]> as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for Dim<[usize; 5]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 5]> as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for Dim<[usize; 6]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 6]> as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for Dim<IxDynImpl>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<IxDynImpl> as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<E, D1, D2> LeastSquaresSvd<D2, E, Dim<[usize; 1]>> for ArrayBase<D1, Dim<[usize; 2]>>
where E: Scalar + Lapack, D1: Data<Elem = E>, D2: Data<Elem = E>,

Solve least squares for immutable references and a single column vector as a right-hand side. E is one of f32, f64, c32, c64. D1, D2 can be any valid representation for ArrayBase (over E).

Source§

fn least_squares( &self, rhs: &ArrayBase<D2, Dim<[usize; 1]>>, ) -> Result<LeastSquaresResult<E, Dim<[usize; 1]>>, LinalgError>

Solve a least squares problem of the form Ax = rhs by calling A.least_squares(&rhs), where rhs is a single column vector. A and rhs are unchanged.

A and rhs must have the same layout, i.e. they must be both either row- or column-major format, otherwise a IncompatibleShape error is raised.

Source§

impl<E, D1, D2> LeastSquaresSvd<D2, E, Dim<[usize; 2]>> for ArrayBase<D1, Dim<[usize; 2]>>
where E: Scalar + Lapack, D1: Data<Elem = E>, D2: Data<Elem = E>,

Solve least squares for immutable references and matrix (=mulitipe vectors) as a right-hand side. E is one of f32, f64, c32, c64. D1, D2 can be any valid representation for ArrayBase (over E).

Source§

fn least_squares( &self, rhs: &ArrayBase<D2, Dim<[usize; 2]>>, ) -> Result<LeastSquaresResult<E, Dim<[usize; 2]>>, LinalgError>

Solve a least squares problem of the form Ax = rhs by calling A.least_squares(&rhs), where rhs is matrix. A and rhs are unchanged.

A and rhs must have the same layout, i.e. they must be both either row- or column-major format, otherwise a IncompatibleShape error is raised.

Source§

impl<E, D1, D2> LeastSquaresSvdInPlace<D2, E, Dim<[usize; 1]>> for ArrayBase<D1, Dim<[usize; 2]>>
where E: Scalar + Lapack, D1: DataMut<Elem = E>, D2: DataMut<Elem = E>,

Solve least squares for mutable references and a vector as a right-hand side. Both values are overwritten in the call.

E is one of f32, f64, c32, c64. D1, D2 can be any valid representation for ArrayBase (over E).

Source§

fn least_squares_in_place( &mut self, rhs: &mut ArrayBase<D2, Dim<[usize; 1]>>, ) -> Result<LeastSquaresResult<E, Dim<[usize; 1]>>, LinalgError>

Solve a least squares problem of the form Ax = rhs by calling A.least_squares(rhs), where rhs is a vector. A and rhs are overwritten in the call.

A and rhs must have the same layout, i.e. they must be both either row- or column-major format, otherwise a IncompatibleShape error is raised.

Source§

impl<E, D1, D2> LeastSquaresSvdInPlace<D2, E, Dim<[usize; 2]>> for ArrayBase<D1, Dim<[usize; 2]>>
where E: Scalar + Lapack, D1: DataMut<Elem = E>, D2: DataMut<Elem = E>,

Solve least squares for mutable references and a matrix as a right-hand side. Both values are overwritten in the call.

E is one of f32, f64, c32, c64. D1, D2 can be any valid representation for ArrayBase (over E).

Source§

fn least_squares_in_place( &mut self, rhs: &mut ArrayBase<D2, Dim<[usize; 2]>>, ) -> Result<LeastSquaresResult<E, Dim<[usize; 2]>>, LinalgError>

Solve a least squares problem of the form Ax = rhs by calling A.least_squares(rhs), where rhs is a matrix. A and rhs are overwritten in the call.

A and rhs must have the same layout, i.e. they must be both either row- or column-major format, otherwise a IncompatibleShape error is raised.

Source§

impl<E, D1, D2> LeastSquaresSvdInto<D2, E, Dim<[usize; 1]>> for ArrayBase<D1, Dim<[usize; 2]>>
where E: Scalar + Lapack, D1: DataMut<Elem = E>, D2: DataMut<Elem = E>,

Solve least squares for owned values and a single column vector as a right-hand side. The matrix and the RHS vector are consumed.

E is one of f32, f64, c32, c64. D can be any valid representation for ArrayBase.

Source§

fn least_squares_into( self, rhs: ArrayBase<D2, Dim<[usize; 1]>>, ) -> Result<LeastSquaresResult<E, Dim<[usize; 1]>>, LinalgError>

Solve a least squares problem of the form Ax = rhs by calling A.least_squares(rhs), where rhs is a single column vector. A and rhs are consumed.

A and rhs must have the same layout, i.e. they must be both either row- or column-major format, otherwise a IncompatibleShape error is raised.

Source§

impl<E, D1, D2> LeastSquaresSvdInto<D2, E, Dim<[usize; 2]>> for ArrayBase<D1, Dim<[usize; 2]>>
where E: Scalar + Lapack, D1: DataMut<Elem = E>, D2: DataMut<Elem = E>,

Solve least squares for owned values and a matrix as a right-hand side. The matrix and the RHS matrix are consumed.

E is one of f32, f64, c32, c64. D1, D2 can be any valid representation for ArrayBase (over E).

Source§

fn least_squares_into( self, rhs: ArrayBase<D2, Dim<[usize; 2]>>, ) -> Result<LeastSquaresResult<E, Dim<[usize; 2]>>, LinalgError>

Solve a least squares problem of the form Ax = rhs by calling A.least_squares(rhs), where rhs is a matrix. A and rhs are consumed.

A and rhs must have the same layout, i.e. they must be both either row- or column-major format, otherwise a IncompatibleShape error is raised.

Source§

impl<I> Mul<usize> for Dim<I>
where Dim<I>: Dimension,

Source§

type Output = Dim<I>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: usize) -> Dim<I>

Performs the * operation. Read more
Source§

impl<I> Mul for Dim<I>
where Dim<I>: Dimension,

Source§

type Output = Dim<I>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Dim<I>) -> Dim<I>

Performs the * operation. Read more
Source§

impl<'a, I> MulAssign<&'a Dim<I>> for Dim<I>
where Dim<I>: Dimension,

Source§

fn mul_assign(&mut self, rhs: &Dim<I>)

Performs the *= operation. Read more
Source§

impl<I> MulAssign<usize> for Dim<I>
where Dim<I>: Dimension,

Source§

fn mul_assign(&mut self, rhs: usize)

Performs the *= operation. Read more
Source§

impl<I> MulAssign for Dim<I>
where Dim<I>: Dimension,

Source§

fn mul_assign(&mut self, rhs: Dim<I>)

Performs the *= operation. Read more
Source§

impl<I> PartialEq<I> for Dim<I>
where I: PartialEq + ?Sized,

Source§

fn eq(&self, rhs: &I) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<I> PartialEq for Dim<I>
where I: PartialEq + ?Sized,

Source§

fn eq(&self, other: &Dim<I>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl RemoveAxis for Dim<[usize; 1]>

Source§

fn remove_axis(&self, axis: Axis) -> Dim<[usize; 0]>

Source§

impl RemoveAxis for Dim<[usize; 2]>

Source§

fn remove_axis(&self, axis: Axis) -> Dim<[usize; 1]>

Source§

impl RemoveAxis for Dim<[usize; 3]>

Source§

fn remove_axis(&self, axis: Axis) -> <Dim<[usize; 3]> as Dimension>::Smaller

Source§

impl RemoveAxis for Dim<[usize; 4]>

Source§

fn remove_axis(&self, axis: Axis) -> <Dim<[usize; 4]> as Dimension>::Smaller

Source§

impl RemoveAxis for Dim<[usize; 5]>

Source§

fn remove_axis(&self, axis: Axis) -> <Dim<[usize; 5]> as Dimension>::Smaller

Source§

impl RemoveAxis for Dim<[usize; 6]>

Source§

fn remove_axis(&self, axis: Axis) -> <Dim<[usize; 6]> as Dimension>::Smaller

Source§

impl RemoveAxis for Dim<IxDynImpl>

Source§

fn remove_axis(&self, axis: Axis) -> Dim<IxDynImpl>

Source§

impl<I> Serialize for Dim<I>
where I: Serialize,

Requires crate feature "serde"

Source§

fn serialize<Se>( &self, serializer: Se, ) -> Result<<Se as Serializer>::Ok, <Se as Serializer>::Error>
where Se: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Serialize for Dim<IxDynImpl>

Requires crate feature "serde"

Source§

fn serialize<Se>( &self, serializer: Se, ) -> Result<<Se as Serializer>::Ok, <Se as Serializer>::Error>
where Se: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<T, Dout> SliceArg<Dim<[usize; 0]>> for SliceInfo<T, Dim<[usize; 0]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 1]>> for SliceInfo<T, Dim<[usize; 1]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 2]>> for SliceInfo<T, Dim<[usize; 2]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 3]>> for SliceInfo<T, Dim<[usize; 3]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 4]>> for SliceInfo<T, Dim<[usize; 4]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 5]>> for SliceInfo<T, Dim<[usize; 5]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 6]>> for SliceInfo<T, Dim<[usize; 6]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl SliceArg<Dim<IxDynImpl>> for [SliceInfoElem]

Source§

type OutDim = Dim<IxDynImpl>

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Din, Dout> SliceArg<Dim<IxDynImpl>> for SliceInfo<T, Din, Dout>
where T: AsRef<[SliceInfoElem]>, Din: Dimension, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<A, Si, So> SolveTriangular<A, So, Dim<[usize; 1]>> for ArrayBase<Si, Dim<[usize; 2]>>
where A: Scalar + Lapack, Si: Data<Elem = A>, So: DataMut<Elem = A> + DataOwned,

Source§

fn solve_triangular( &self, uplo: UPLO, diag: Diag, b: &ArrayBase<So, Dim<[usize; 1]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 1]>>, LinalgError>

Source§

impl<A, Si, So> SolveTriangular<A, So, Dim<[usize; 2]>> for ArrayBase<Si, Dim<[usize; 2]>>
where A: Scalar + Lapack, Si: Data<Elem = A>, So: DataMut<Elem = A> + DataOwned,

Source§

fn solve_triangular( &self, uplo: UPLO, diag: Diag, b: &ArrayBase<So, Dim<[usize; 2]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>, LinalgError>

Source§

impl<A, Si, So> SolveTriangularInplace<So, Dim<[usize; 2]>> for ArrayBase<Si, Dim<[usize; 2]>>
where A: Scalar + Lapack, Si: Data<Elem = A>, So: DataMut<Elem = A> + DataOwned,

Source§

fn solve_triangular_inplace<'a>( &self, uplo: UPLO, diag: Diag, b: &'a mut ArrayBase<So, Dim<[usize; 2]>>, ) -> Result<&'a mut ArrayBase<So, Dim<[usize; 2]>>, LinalgError>

Source§

impl<A, Si, So> SolveTriangularInto<So, Dim<[usize; 1]>> for ArrayBase<Si, Dim<[usize; 2]>>
where A: Scalar + Lapack, Si: Data<Elem = A>, So: DataMut<Elem = A> + DataOwned,

Source§

fn solve_triangular_into( &self, uplo: UPLO, diag: Diag, b: ArrayBase<So, Dim<[usize; 1]>>, ) -> Result<ArrayBase<So, Dim<[usize; 1]>>, LinalgError>

Source§

impl<A, Si, So> SolveTriangularInto<So, Dim<[usize; 2]>> for ArrayBase<Si, Dim<[usize; 2]>>
where A: Scalar + Lapack, Si: Data<Elem = A>, So: DataMut<Elem = A> + DataOwned,

Source§

fn solve_triangular_into( &self, uplo: UPLO, diag: Diag, b: ArrayBase<So, Dim<[usize; 2]>>, ) -> Result<ArrayBase<So, Dim<[usize; 2]>>, LinalgError>

Source§

impl<A, S> SolveTridiagonal<A, Dim<[usize; 1]>> for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: Data<Elem = A>,

Source§

fn solve_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 1]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 1]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 1]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 1]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 1]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 1]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

impl<A> SolveTridiagonal<A, Dim<[usize; 1]>> for LUFactorizedTridiagonal<A>
where A: Scalar + Lapack,

Source§

fn solve_tridiagonal<S>( &self, b: &ArrayBase<S, Dim<[usize; 1]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 1]>>, LinalgError>
where S: Data<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_tridiagonal_into<S>( &self, b: ArrayBase<S, Dim<[usize; 1]>>, ) -> Result<ArrayBase<S, Dim<[usize; 1]>>, LinalgError>
where S: DataMut<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal<S>( &self, b: &ArrayBase<S, Dim<[usize; 1]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 1]>>, LinalgError>
where S: Data<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal_into<S>( &self, b: ArrayBase<S, Dim<[usize; 1]>>, ) -> Result<ArrayBase<S, Dim<[usize; 1]>>, LinalgError>
where S: DataMut<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal<S>( &self, b: &ArrayBase<S, Dim<[usize; 1]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 1]>>, LinalgError>
where S: Data<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal_into<S>( &self, b: ArrayBase<S, Dim<[usize; 1]>>, ) -> Result<ArrayBase<S, Dim<[usize; 1]>>, LinalgError>
where S: DataMut<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

impl<A> SolveTridiagonal<A, Dim<[usize; 1]>> for Tridiagonal<A>
where A: Scalar + Lapack,

Source§

fn solve_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 1]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 1]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 1]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 1]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 1]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 1]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 1]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

impl<A, S> SolveTridiagonal<A, Dim<[usize; 2]>> for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: Data<Elem = A>,

Source§

fn solve_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

impl<A> SolveTridiagonal<A, Dim<[usize; 2]>> for LUFactorizedTridiagonal<A>
where A: Scalar + Lapack,

Source§

fn solve_tridiagonal<S>( &self, b: &ArrayBase<S, Dim<[usize; 2]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>, LinalgError>
where S: Data<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_tridiagonal_into<S>( &self, b: ArrayBase<S, Dim<[usize; 2]>>, ) -> Result<ArrayBase<S, Dim<[usize; 2]>>, LinalgError>
where S: DataMut<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal<S>( &self, b: &ArrayBase<S, Dim<[usize; 2]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>, LinalgError>
where S: Data<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal_into<S>( &self, b: ArrayBase<S, Dim<[usize; 2]>>, ) -> Result<ArrayBase<S, Dim<[usize; 2]>>, LinalgError>
where S: DataMut<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal<S>( &self, b: &ArrayBase<S, Dim<[usize; 2]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>, LinalgError>
where S: Data<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal_into<S>( &self, b: ArrayBase<S, Dim<[usize; 2]>>, ) -> Result<ArrayBase<S, Dim<[usize; 2]>>, LinalgError>
where S: DataMut<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

impl<A> SolveTridiagonal<A, Dim<[usize; 2]>> for Tridiagonal<A>
where A: Scalar + Lapack,

Source§

fn solve_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_t_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal<Sb>( &self, b: &ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>, LinalgError>
where Sb: Data<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

fn solve_h_tridiagonal_into<Sb>( &self, b: ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result.
Source§

impl<A, S> SolveTridiagonalInplace<A, Dim<[usize; 2]>> for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: Data<Elem = A>,

Source§

fn solve_tridiagonal_inplace<'a, Sb>( &self, rhs: &'a mut ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<&'a mut ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.
Source§

fn solve_t_tridiagonal_inplace<'a, Sb>( &self, rhs: &'a mut ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<&'a mut ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^T * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.
Source§

fn solve_h_tridiagonal_inplace<'a, Sb>( &self, rhs: &'a mut ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<&'a mut ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^H * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.
Source§

impl<A> SolveTridiagonalInplace<A, Dim<[usize; 2]>> for LUFactorizedTridiagonal<A>
where A: Scalar + Lapack,

Source§

fn solve_tridiagonal_inplace<'a, Sb>( &self, rhs: &'a mut ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<&'a mut ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.
Source§

fn solve_t_tridiagonal_inplace<'a, Sb>( &self, rhs: &'a mut ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<&'a mut ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^T * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.
Source§

fn solve_h_tridiagonal_inplace<'a, Sb>( &self, rhs: &'a mut ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<&'a mut ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^H * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.
Source§

impl<A> SolveTridiagonalInplace<A, Dim<[usize; 2]>> for Tridiagonal<A>
where A: Scalar + Lapack,

Source§

fn solve_tridiagonal_inplace<'a, Sb>( &self, rhs: &'a mut ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<&'a mut ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.
Source§

fn solve_t_tridiagonal_inplace<'a, Sb>( &self, rhs: &'a mut ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<&'a mut ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^T * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.
Source§

fn solve_h_tridiagonal_inplace<'a, Sb>( &self, rhs: &'a mut ArrayBase<Sb, Dim<[usize; 2]>>, ) -> Result<&'a mut ArrayBase<Sb, Dim<[usize; 2]>>, LinalgError>
where Sb: DataMut<Elem = A>,

Solves a system of linear equations A^H * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.
Source§

impl Sub<usize> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 1]>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> Dim<[usize; 1]>

Performs the - operation. Read more
Source§

impl<I> Sub for Dim<I>
where Dim<I>: Dimension,

Source§

type Output = Dim<I>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Dim<I>) -> Dim<I>

Performs the - operation. Read more
Source§

impl<'a, I> SubAssign<&'a Dim<I>> for Dim<I>
where Dim<I>: Dimension,

Source§

fn sub_assign(&mut self, rhs: &Dim<I>)

Performs the -= operation. Read more
Source§

impl SubAssign<usize> for Dim<[usize; 1]>

Source§

fn sub_assign(&mut self, rhs: usize)

Performs the -= operation. Read more
Source§

impl<I> SubAssign for Dim<I>
where Dim<I>: Dimension,

Source§

fn sub_assign(&mut self, rhs: Dim<I>)

Performs the -= operation. Read more
Source§

impl Zero for Dim<[usize; 0]>

Source§

fn zero() -> Dim<[usize; 0]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 1]>

Source§

fn zero() -> Dim<[usize; 1]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 2]>

Source§

fn zero() -> Dim<[usize; 2]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 3]>

Source§

fn zero() -> Dim<[usize; 3]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 4]>

Source§

fn zero() -> Dim<[usize; 4]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 5]>

Source§

fn zero() -> Dim<[usize; 5]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 6]>

Source§

fn zero() -> Dim<[usize; 6]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl<I> Copy for Dim<I>
where I: Copy + ?Sized,

Source§

impl<I> Eq for Dim<I>
where I: Eq + ?Sized,

Source§

impl NdIndex<Dim<[usize; 0]>> for [usize; 0]

Source§

impl NdIndex<Dim<[usize; 0]>> for ()

Source§

impl NdIndex<Dim<[usize; 1]>> for [usize; 1]

Source§

impl NdIndex<Dim<[usize; 1]>> for usize

Source§

impl NdIndex<Dim<[usize; 2]>> for [usize; 2]

Source§

impl NdIndex<Dim<[usize; 2]>> for (usize, usize)

Source§

impl NdIndex<Dim<[usize; 3]>> for [usize; 3]

Source§

impl NdIndex<Dim<[usize; 3]>> for (usize, usize, usize)

Source§

impl NdIndex<Dim<[usize; 4]>> for [usize; 4]

Source§

impl NdIndex<Dim<[usize; 4]>> for (usize, usize, usize, usize)

Source§

impl NdIndex<Dim<[usize; 5]>> for [usize; 5]

Source§

impl NdIndex<Dim<[usize; 5]>> for (usize, usize, usize, usize, usize)

Source§

impl NdIndex<Dim<[usize; 6]>> for [usize; 6]

Source§

impl NdIndex<Dim<[usize; 6]>> for (usize, usize, usize, usize, usize, usize)

Source§

impl<'a> NdIndex<Dim<IxDynImpl>> for &'a [usize]

Source§

impl<'a> NdIndex<Dim<IxDynImpl>> for &'a Dim<IxDynImpl>

Source§

impl<const N: usize> NdIndex<Dim<IxDynImpl>> for [usize; N]

Source§

impl<const N: usize> NdIndex<Dim<IxDynImpl>> for Dim<[usize; N]>

Source§

impl NdIndex<Dim<IxDynImpl>> for usize

Source§

impl<I> StructuralPartialEq for Dim<I>
where I: ?Sized,

Auto Trait Implementations§

§

impl<I> Freeze for Dim<I>
where I: Freeze + ?Sized,

§

impl<I> RefUnwindSafe for Dim<I>
where I: RefUnwindSafe + ?Sized,

§

impl<I> Send for Dim<I>
where I: Send + ?Sized,

§

impl<I> Sync for Dim<I>
where I: Sync + ?Sized,

§

impl<I> Unpin for Dim<I>
where I: Unpin + ?Sized,

§

impl<I> UnwindSafe for Dim<I>
where I: UnwindSafe + ?Sized,

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§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

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

impl<D> DimMax<D> for D
where D: Dimension,

Source§

type Output = D

The resulting dimension type after broadcasting.
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<D> IntoDimension for D
where D: Dimension,

Source§

type Dim = D

Source§

fn into_dimension(self) -> D

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
Source§

impl<D> NdIndex<D> for D
where D: Dimension,

Source§

fn index_checked(&self, dim: &D, strides: &D) -> Option<isize>

Source§

fn index_unchecked(&self, strides: &D) -> isize

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ShapeArg for T
where T: IntoDimension,

Source§

impl<T> ShapeBuilder for T
where T: IntoDimension,

Source§

type Dim = <T as IntoDimension>::Dim

Source§

type Strides = T

Source§

fn into_shape_with_order(self) -> Shape<<T as ShapeBuilder>::Dim>

Source§

fn f(self) -> Shape<<T as ShapeBuilder>::Dim>

Source§

fn set_f(self, is_f: bool) -> Shape<<T as ShapeBuilder>::Dim>

Source§

fn strides(self, st: T) -> StrideShape<<T as ShapeBuilder>::Dim>

Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

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

Source§

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>,

Source§

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>,

Source§

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T, Right> ClosedAdd<Right> for T
where T: Add<Right, Output = T> + AddAssign<Right>,

Source§

impl<T, Right> ClosedAddAssign<Right> for T
where T: ClosedAdd<Right> + AddAssign<Right>,

Source§

impl<T, Right> ClosedMul<Right> for T
where T: Mul<Right, Output = T> + MulAssign<Right>,

Source§

impl<T, Right> ClosedMulAssign<Right> for T
where T: ClosedMul<Right> + MulAssign<Right>,

Source§

impl<T, Right> ClosedSub<Right> for T
where T: Sub<Right, Output = T> + SubAssign<Right>,

Source§

impl<T, Right> ClosedSubAssign<Right> for T
where T: ClosedSub<Right> + SubAssign<Right>,

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,