conspire::math

Struct TensorRank4

Source
pub struct TensorRank4<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize>(/* private fields */);
Expand description

A d-dimensional tensor of rank 4.

D is the dimension, I, J, K, L are the configurations.

Implementations§

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> TensorRank4<D, I, J, K, L>

Source

pub fn as_tensor_rank_2(&self) -> TensorRank2<9, 88, 99>

Source

pub fn dyad_ij_kl( tensor_rank_2_a: &TensorRank2<D, I, J>, tensor_rank_2_b: &TensorRank2<D, K, L>, ) -> Self

Source

pub fn dyad_ik_jl( tensor_rank_2_a: &TensorRank2<D, I, K>, tensor_rank_2_b: &TensorRank2<D, J, L>, ) -> Self

Source

pub fn dyad_il_jk( tensor_rank_2_a: &TensorRank2<D, I, L>, tensor_rank_2_b: &TensorRank2<D, J, K>, ) -> Self

Source

pub fn dyad_il_kj( tensor_rank_2_a: &TensorRank2<D, I, L>, tensor_rank_2_b: &TensorRank2<D, K, J>, ) -> Self

Trait Implementations§

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Add<&TensorRank4<D, I, J, K, L>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, L>

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Add<TensorRank4<D, I, J, K, L>> for &TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, L>

The resulting type after applying the + operator.
Source§

fn add(self, tensor_rank_4: TensorRank4<D, I, J, K, L>) -> Self::Output

Performs the + operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Add for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, L>

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> AddAssign<&TensorRank4<D, I, J, K, L>> for TensorRank4<D, I, J, K, L>

Source§

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

Performs the += operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> AddAssign for TensorRank4<D, I, J, K, L>

Source§

fn add_assign(&mut self, tensor_rank_4: Self)

Performs the += operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Clone for TensorRank4<D, I, J, K, L>

Source§

fn clone(&self) -> TensorRank4<D, I, J, K, L>

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 L: usize, const M: usize, const N: usize, const O: usize, const P: usize> ContractAllIndicesWithFirstIndicesOf<&TensorRank2<D, I, M>, &TensorRank2<D, J, N>, &TensorRank2<D, K, O>, &TensorRank2<D, L, P>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, M, N, O, P>

Source§

fn contract_all_indices_with_first_indices_of( &self, tensor_rank_2_a: &TensorRank2<D, I, M>, tensor_rank_2_b: &TensorRank2<D, J, N>, tensor_rank_2_c: &TensorRank2<D, K, O>, tensor_rank_2_d: &TensorRank2<D, L, P>, ) -> Self::Output

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize, const M: usize, const N: usize> ContractFirstSecondIndicesWithSecondIndicesOf<&TensorRank2<D, I, M>, &TensorRank2<D, J, N>> for TensorRank4<D, M, N, K, L>

Source§

type Output = TensorRank4<D, I, J, K, L>

Source§

fn contract_first_second_indices_with_second_indices_of( &self, tensor_rank_2_a: &TensorRank2<D, I, M>, tensor_rank_2_b: &TensorRank2<D, J, N>, ) -> Self::Output

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize, const M: usize, const O: usize, const P: usize> ContractFirstThirdFourthIndicesWithFirstIndicesOf<&TensorRank2<D, I, M>, &TensorRank2<D, K, O>, &TensorRank2<D, L, P>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, M, J, O, P>

Source§

fn contract_first_third_fourth_indices_with_first_indices_of( &self, tensor_rank_2_a: &TensorRank2<D, I, M>, tensor_rank_2_b: &TensorRank2<D, K, O>, tensor_rank_2_c: &TensorRank2<D, L, P>, ) -> Self::Output

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> ContractSecondFourthIndicesWithFirstIndicesOf<&TensorRank1<D, J>, &TensorRank1<D, L>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank2<D, I, K>

Source§

fn contract_second_fourth_indices_with_first_indices_of( &self, tensor_rank_1_a: &TensorRank1<D, J>, tensor_rank_1_b: &TensorRank1<D, L>, ) -> Self::Output

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize, const N: usize> ContractSecondIndexWithFirstIndexOf<&TensorRank2<D, J, N>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, N, K, L>

Source§

fn contract_second_index_with_first_index_of( &self, tensor_rank_2: &TensorRank2<D, J, N>, ) -> Self::Output

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> ContractThirdFourthIndicesWithFirstSecondIndicesOf<&TensorRank2<D, K, L>> for TensorRank4<D, I, J, K, L>

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Debug for TensorRank4<D, I, J, K, L>

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 L: usize> Display for TensorRank4<D, I, J, K, L>

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 L: usize> Div<&f64> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, L>

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 I: usize, const J: usize, const K: usize, const L: usize> Div<TensorRank4<3, I, J, K, L>> for TensorRank2<3, I, J>

Source§

type Output = TensorRank2<3, K, L>

The resulting type after applying the / operator.
Source§

fn div(self, tensor_rank_4: TensorRank4<3, I, J, K, L>) -> Self::Output

Performs the / operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Div<f64> for &TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, L>

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 L: usize> Div<f64> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, L>

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 L: usize> DivAssign<&f64> for TensorRank4<D, I, J, K, L>

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 L: usize> DivAssign<f64> for TensorRank4<D, I, J, K, L>

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 L: usize> From<TensorRank4<D, I, J, K, L>> for Vec<Vec<Vec<Vec<f64>>>>

Source§

fn from(tensor_rank_4: TensorRank4<D, I, J, K, L>) -> Self

Converts to this type from the input type.
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> From<Vec<Vec<Vec<Vec<f64>>>>> for TensorRank4<D, I, J, K, L>

Source§

fn from(vec_rank_4: Vec<Vec<Vec<Vec<f64>>>>) -> Self

Converts to this type from the input type.
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> FromIterator<TensorRank3<D, J, K, L>> for TensorRank4<D, I, J, K, L>

Source§

fn from_iter<Ii: IntoIterator<Item = TensorRank3<D, J, K, L>>>( 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 L: usize, const W: usize> FromIterator<TensorRank4<D, I, J, K, L>> for TensorRank4List<D, I, J, K, L, W>

Source§

fn from_iter<Ii: IntoIterator<Item = TensorRank4<D, I, J, K, L>>>( 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 L: usize> Hessian for TensorRank4<D, I, J, K, L>

Source§

fn is_positive_definite(&self) -> bool

Checks whether the Hessian is positive-definite.
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Index<usize> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank3<D, J, K, L>

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 L: usize> IndexMut<usize> for TensorRank4<D, I, J, K, L>

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 L: usize, const M: usize> Mul<&TensorRank2<D, L, M>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, M>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_2: &TensorRank2<D, L, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Mul<&f64> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, L>

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 L: usize, const M: usize> Mul<TensorRank2<D, L, M>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, M>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_2: TensorRank2<D, L, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Mul<f64> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, L>

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 L: usize> MulAssign<&f64> for TensorRank4<D, I, J, K, L>

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 L: usize> MulAssign<f64> for TensorRank4<D, I, J, K, L>

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 L: usize> PartialEq for TensorRank4<D, I, J, K, L>

Source§

fn eq(&self, other: &Self) -> 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<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Sub<&TensorRank4<D, I, J, K, L>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, L>

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Sub for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, I, J, K, L>

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> SubAssign<&TensorRank4<D, I, J, K, L>> for TensorRank4<D, I, J, K, L>

Source§

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

Performs the -= operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> SubAssign for TensorRank4<D, I, J, K, L>

Source§

fn sub_assign(&mut self, tensor_rank_4: Self)

Performs the -= operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Sum for TensorRank4<D, I, J, K, L>

Source§

fn sum<Ii>(iter: Ii) -> Self
where Ii: Iterator<Item = Self>,

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Tensor for TensorRank4<D, I, J, K, L>

Source§

type Item = TensorRank3<D, J, K, L>

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 L: usize> TensorArray for TensorRank4<D, I, J, K, L>

Source§

type Array = [[[[f64; D]; D]; D]; D]

The type of array corresponding to the tensor.
Source§

type Item = TensorRank3<D, J, K, L>

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 L: usize> Freeze for TensorRank4<D, I, J, K, L>

§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> RefUnwindSafe for TensorRank4<D, I, J, K, L>

§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Send for TensorRank4<D, I, J, K, L>

§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Sync for TensorRank4<D, I, J, K, L>

§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> Unpin for TensorRank4<D, I, J, K, L>

§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> UnwindSafe for TensorRank4<D, I, J, K, L>

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