conspire::math

Struct TensorRank3List3D

Source
pub struct TensorRank3List3D<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize>(/* private fields */);
Expand description

A 3D list of d-dimensional tensors of rank 3.

D is the dimension, I, J, K are the configurations W, X, and Y are the list lengths.

Trait Implementations§

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Add<&TensorRank3List3D<D, I, J, K, W, X, Y>> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Output = TensorRank3List3D<D, I, J, K, W, X, Y>

The resulting type after applying the + operator.
Source§

fn add(self, tensor_rank_3_list_3d: &Self) -> Self::Output

Performs the + operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Add for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Output = TensorRank3List3D<D, I, J, K, W, X, Y>

The resulting type after applying the + operator.
Source§

fn add(self, tensor_rank_3_list_3d: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> AddAssign<&TensorRank3List3D<D, I, J, K, W, X, Y>> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

fn add_assign(&mut self, tensor_rank_3_list_3d: &Self)

Performs the += operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> AddAssign for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

fn add_assign(&mut self, tensor_rank_3_list_3d: Self)

Performs the += operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Clone for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

fn clone(&self) -> TensorRank3List3D<D, I, J, K, W, X, Y>

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<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Debug for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

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

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

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Display for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

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

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

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Div<&f64> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Output = TensorRank3List3D<D, I, J, K, W, X, Y>

The resulting type after applying the / operator.
Source§

fn div(self, tensor_rank_0: &TensorRank0) -> Self::Output

Performs the / operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Div<f64> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Output = TensorRank3List3D<D, I, J, K, W, X, Y>

The resulting type after applying the / operator.
Source§

fn div(self, tensor_rank_0: TensorRank0) -> Self::Output

Performs the / operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> DivAssign<&f64> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

fn div_assign(&mut self, tensor_rank_0: &TensorRank0)

Performs the /= operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> DivAssign<f64> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

fn div_assign(&mut self, tensor_rank_0: TensorRank0)

Performs the /= operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> FromIterator<TensorRank3List2D<D, I, J, K, W, X>> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

fn from_iter<Ii: IntoIterator<Item = TensorRank3List2D<D, I, J, K, W, X>>>( into_iterator: Ii, ) -> Self

Creates a value from an iterator. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Index<usize> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Output = TensorRank3List2D<D, I, J, K, W, X>

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &Self::Output

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

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> IndexMut<usize> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

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

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Mul<&f64> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Output = TensorRank3List3D<D, I, J, K, W, X, Y>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_0: &TensorRank0) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Mul<f64> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Output = TensorRank3List3D<D, I, J, K, W, X, Y>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_0: TensorRank0) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> MulAssign<&f64> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

fn mul_assign(&mut self, tensor_rank_0: &TensorRank0)

Performs the *= operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> MulAssign<f64> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

fn mul_assign(&mut self, tensor_rank_0: TensorRank0)

Performs the *= operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Sub<&TensorRank3List3D<D, I, J, K, W, X, Y>> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Output = TensorRank3List3D<D, I, J, K, W, X, Y>

The resulting type after applying the - operator.
Source§

fn sub(self, tensor_rank_3_list_3d: &Self) -> Self::Output

Performs the - operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Sub for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Output = TensorRank3List3D<D, I, J, K, W, X, Y>

The resulting type after applying the - operator.
Source§

fn sub(self, tensor_rank_3_list_3d: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> SubAssign<&TensorRank3List3D<D, I, J, K, W, X, Y>> for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

fn sub_assign(&mut self, tensor_rank_3_list_3d: &Self)

Performs the -= operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> SubAssign for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

fn sub_assign(&mut self, tensor_rank_3_list_3d: Self)

Performs the -= operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Tensor for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Item = TensorRank3List2D<D, I, J, K, W, X>

The type of item encountered when iterating over the tensor.
Source§

fn iter(&self) -> impl Iterator<Item = &Self::Item>

Returns an iterator. Read more
Source§

fn iter_mut(&mut self) -> impl Iterator<Item = &mut Self::Item>

Returns an iterator that allows modifying each value. Read more
Source§

fn full_contraction(&self, tensor: &Self) -> TensorRank0

Returns the full contraction with another tensor.
Source§

fn get_at(&self, _indices: &[usize]) -> &TensorRank0

Returns a reference to the entry at the specified indices.
Source§

fn get_at_mut(&mut self, _indices: &[usize]) -> &mut TensorRank0

Returns a mutable reference to the entry at the specified indices.
Source§

fn is_zero(&self) -> bool

Checks whether the tensor is the zero tensor.
Source§

fn norm(&self) -> TensorRank0

Returns the tensor norm.
Source§

fn norm_squared(&self) -> TensorRank0

Returns the tensor norm squared.
Source§

fn normalize(&mut self)

Normalizes the tensor.
Source§

fn normalized(self) -> Self

Returns the tensor normalized.
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> TensorArray for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Array = [[[[[[f64; D]; D]; D]; W]; X]; Y]

The type of array corresponding to the tensor.
Source§

type Item = TensorRank3List2D<D, I, J, K, W, X>

The type of item encountered when iterating over the tensor.
Source§

fn as_array(&self) -> Self::Array

Returns the tensor as an array.
Source§

fn identity() -> Self

Returns the identity tensor.
Source§

fn new(array: Self::Array) -> Self

Returns a tensor given an array.
Source§

fn zero() -> Self

Returns the zero tensor.

Auto Trait Implementations§

§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Freeze for TensorRank3List3D<D, I, J, K, W, X, Y>

§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> RefUnwindSafe for TensorRank3List3D<D, I, J, K, W, X, Y>

§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Send for TensorRank3List3D<D, I, J, K, W, X, Y>

§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Sync for TensorRank3List3D<D, I, J, K, W, X, Y>

§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> Unpin for TensorRank3List3D<D, I, J, K, W, X, Y>

§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> UnwindSafe for TensorRank3List3D<D, I, J, K, W, X, Y>

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, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
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,

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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<A, Y, U> OdeSolver<Y, U> for A
where A: Debug, Y: Tensor, U: TensorVec<Item = Y>,