conspire::math

Struct TensorRank2

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

A d-dimensional tensor of rank 2.

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

Implementations§

Source§

impl<const D: usize, const I: usize, const J: usize> TensorRank2<D, I, J>

Source

pub fn as_tensor_rank_1(&self) -> TensorRank1<9, 88>

Returns the rank-2 tensor reshaped as a rank-1 tensor.

Source

pub fn determinant(&self) -> TensorRank0

Returns the determinant of the rank-2 tensor.

Source

pub fn dyad(vector_a: &TensorRank1<D, I>, vector_b: &TensorRank1<D, J>) -> Self

Returns a rank-2 tensor constructed from a dyad of the given vectors.

Source

pub fn inverse(&self) -> TensorRank2<D, J, I>

Returns the inverse of the rank-2 tensor.

Source

pub fn inverse_and_determinant(&self) -> (TensorRank2<D, J, I>, TensorRank0)

Returns the inverse and determinant of the rank-2 tensor.

Source

pub fn inverse_transpose(&self) -> Self

Returns the inverse transpose of the rank-2 tensor.

Source

pub fn inverse_transpose_and_determinant(&self) -> (Self, TensorRank0)

Returns the inverse transpose and determinant of the rank-2 tensor.

Source

pub fn lu_decomposition(&self) -> (TensorRank2<D, I, 88>, TensorRank2<D, 88, J>)

Returns the LU decomposition of the rank-2 tensor.

Source

pub fn lu_decomposition_inverse( &self, ) -> (TensorRank2<D, 88, I>, TensorRank2<D, J, 88>)

Returns the inverse of the LU decomposition of the rank-2 tensor.

Trait Implementations§

Source§

impl<const D: usize, const I: usize, const J: usize> Add<&TensorRank2<D, I, J>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Add<TensorRank2<D, I, J>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

The resulting type after applying the + operator.
Source§

fn add(self, tensor_rank_2: TensorRank2<D, I, J>) -> Self::Output

Performs the + operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Add for TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> AddAssign<&TensorRank2<D, I, J>> for TensorRank2<D, I, J>

Source§

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

Performs the += operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> AddAssign for TensorRank2<D, I, J>

Source§

fn add_assign(&mut self, tensor_rank_2: Self)

Performs the += operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Clone for TensorRank2<D, I, J>

Source§

fn clone(&self) -> TensorRank2<D, I, J>

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, 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> Convert<TensorRank2<D, K, L>> for TensorRank2<D, I, J>

Source§

fn convert(&self) -> TensorRank2<D, K, L>

Converts this type into the (usually inferred) input type.
Source§

impl<const D: usize, const I: usize, const J: usize> Debug for TensorRank2<D, I, J>

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> Display for TensorRank2<D, I, J>

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> Div<&f64> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

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> Div<&f64> for TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

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> Div<TensorRank2<D, I, J>> for TensorRank1<D, I>

Source§

type Output = TensorRank1<D, J>

The resulting type after applying the / operator.
Source§

fn div(self, tensor_rank_2: TensorRank2<D, I, J>) -> 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> Div<f64> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

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> Div<f64> for TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

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> DivAssign<&f64> for TensorRank2<D, I, J>

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> DivAssign<f64> for TensorRank2<D, I, J>

Source§

fn div_assign(&mut self, tensor_rank_0: TensorRank0)

Performs the /= operation. Read more
Source§

impl From<TensorRank2<3, 0, 0>> for TensorRank2<3, 1, 0>

Source§

fn from(tensor_rank_2: TensorRank2<3, 0, 0>) -> Self

Converts to this type from the input type.
Source§

impl From<TensorRank2<3, 0, 0>> for TensorRank2<3, 1, 1>

Source§

fn from(tensor_rank_2: TensorRank2<3, 0, 0>) -> Self

Converts to this type from the input type.
Source§

impl From<TensorRank2<3, 0, 1>> for TensorRank2<3, 0, 0>

Source§

fn from(tensor_rank_2: TensorRank2<3, 0, 1>) -> Self

Converts to this type from the input type.
Source§

impl From<TensorRank2<3, 1, 0>> for TensorRank2<3, 0, 0>

Source§

fn from(tensor_rank_2: TensorRank2<3, 1, 0>) -> Self

Converts to this type from the input type.
Source§

impl From<TensorRank2<3, 1, 1>> for TensorRank2<3, 1, 0>

Source§

fn from(tensor_rank_2: TensorRank2<3, 1, 1>) -> Self

Converts to this type from the input type.
Source§

impl From<TensorRank2<3, 1, 2>> for TensorRank2<3, 1, 0>

Source§

fn from(tensor_rank_2: TensorRank2<3, 1, 2>) -> Self

Converts to this type from the input type.
Source§

impl<const D: usize, const I: usize, const J: usize> From<TensorRank2<D, I, J>> for Vec<Vec<f64>>

Source§

fn from(tensor: TensorRank2<D, I, J>) -> Self

Converts to this type from the input type.
Source§

impl<const D: usize, const I: usize, const J: usize> From<Vec<Vec<f64>>> for TensorRank2<D, I, J>

Source§

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

Converts to this type from the input type.
Source§

impl<const D: usize, const I: usize, const J: usize> FromIterator<TensorRank1<D, J>> for TensorRank2<D, I, J>

Source§

fn from_iter<Ii: IntoIterator<Item = TensorRank1<D, J>>>( into_iterator: Ii, ) -> Self

Creates a value from an iterator. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const W: usize> FromIterator<TensorRank2<D, I, J>> for TensorRank2List<D, I, J, W>

Source§

fn from_iter<Ii: IntoIterator<Item = TensorRank2<D, I, J>>>( into_iterator: Ii, ) -> Self

Creates a value from an iterator. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> FromIterator<TensorRank2<D, I, J>> for TensorRank2Vec<D, I, J>

Source§

fn from_iter<Ii: IntoIterator<Item = TensorRank2<D, I, J>>>( 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> FromIterator<TensorRank2<D, J, K>> for TensorRank3<D, I, J, K>

Source§

fn from_iter<Ii: IntoIterator<Item = TensorRank2<D, J, K>>>( into_iterator: Ii, ) -> Self

Creates a value from an iterator. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Hessian for TensorRank2<D, I, J>

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> Index<usize> for TensorRank2<D, I, J>

Source§

type Output = TensorRank1<D, J>

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> IndexMut<usize> for TensorRank2<D, I, J>

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> Mul<&TensorRank1<D, J>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: &TensorRank1<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Mul<&TensorRank1<D, J>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: &TensorRank1<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const W: usize> Mul<&TensorRank1List<D, J, W>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank1List<D, I, W>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1_list: &TensorRank1List<D, J, W>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const W: usize> Mul<&TensorRank1List<D, J, W>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank1List<D, I, W>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1_list: &TensorRank1List<D, J, W>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Mul<&TensorRank1Vec<D, J>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank1Vec<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1_vec: &TensorRank1Vec<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Mul<&TensorRank1Vec<D, J>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank1Vec<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1_vec: &TensorRank1Vec<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<&TensorRank2<D, J, K>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, K>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<&TensorRank2<D, J, K>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, K>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_2: &TensorRank2<D, J, K>) -> 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> Mul<&TensorRank2<D, J, K>> for TensorRank2List2D<D, I, J, W, X>

Source§

type Output = TensorRank2List2D<D, I, K, W, X>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<&TensorRank2<D, J, K>> for TensorRank2Vec2D<D, I, J>

Source§

type Output = TensorRank2Vec2D<D, I, K>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_2: &TensorRank2<D, J, K>) -> 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> Mul<&f64> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

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> Mul<&f64> for TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

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> Mul<TensorRank1<D, J>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: TensorRank1<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Mul<TensorRank1<D, J>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: TensorRank1<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const W: usize> Mul<TensorRank1List<D, J, W>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank1List<D, I, W>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1_list: TensorRank1List<D, J, W>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const W: usize> Mul<TensorRank1List<D, J, W>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank1List<D, I, W>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1_list: TensorRank1List<D, J, W>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Mul<TensorRank1Vec<D, J>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank1Vec<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1_vec: TensorRank1Vec<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Mul<TensorRank1Vec<D, J>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank1Vec<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1_vec: TensorRank1Vec<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<TensorRank2<D, J, K>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, K>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_2: TensorRank2<D, J, K>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<TensorRank2<D, J, K>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, K>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_2: TensorRank2<D, J, K>) -> 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> Mul<TensorRank2<D, J, K>> for TensorRank2List2D<D, I, J, W, X>

Source§

type Output = TensorRank2List2D<D, I, K, W, X>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_2: TensorRank2<D, J, K>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<TensorRank2<D, J, K>> for TensorRank2Vec2D<D, I, J>

Source§

type Output = TensorRank2Vec2D<D, I, K>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_2: TensorRank2<D, J, K>) -> 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 W: usize, const X: usize> Mul<TensorRank2List2D<D, J, K, W, X>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank2List2D<D, I, K, W, X>

The resulting type after applying the * operator.
Source§

fn mul( self, tensor_rank_2_list_2d: TensorRank2List2D<D, J, K, W, X>, ) -> 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> Mul<TensorRank2List2D<D, J, K, W, X>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank2List2D<D, I, K, W, X>

The resulting type after applying the * operator.
Source§

fn mul( self, tensor_rank_2_list_2d: TensorRank2List2D<D, J, K, W, X>, ) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<TensorRank2Vec2D<D, J, K>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank2Vec2D<D, I, K>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_2_list_2d: TensorRank2Vec2D<D, J, K>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<TensorRank2Vec2D<D, J, K>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank2Vec2D<D, I, K>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_2_list_2d: TensorRank2Vec2D<D, J, K>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Mul<f64> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

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> Mul<f64> for TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

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> MulAssign<&f64> for TensorRank2<D, I, J>

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> MulAssign<f64> for TensorRank2<D, I, J>

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> PartialEq for TensorRank2<D, I, J>

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> Rank2 for TensorRank2<D, I, J>

Source§

type Transpose = TensorRank2<D, J, I>

The type that is the transpose of the tensor.
Source§

fn cholesky_decomposition(&self) -> Result<TensorRank2<D, I, J>, TensorError>

Returns the Cholesky decomposition of the rank-2 tensor.
Source§

fn deviatoric(&self) -> Self

Returns the deviatoric component of the rank-2 tensor.
Source§

fn deviatoric_and_trace(&self) -> (Self, TensorRank0)

Returns the deviatoric component and trace of the rank-2 tensor.
Source§

fn is_diagonal(&self) -> bool

Checks whether the tensor is a diagonal tensor.
Source§

fn is_identity(&self) -> bool

Checks whether the tensor is the identity tensor.
Source§

fn squared_trace(&self) -> TensorRank0

Returns the trace of the rank-2 tensor squared.
Source§

fn trace(&self) -> TensorRank0

Returns the trace of the rank-2 tensor.
Source§

fn transpose(&self) -> Self::Transpose

Returns the transpose of the rank-2 tensor.
Source§

fn second_invariant(&self) -> TensorRank0

Returns the second invariant of the rank-2 tensor.
Source§

impl<const D: usize, const I: usize, const J: usize> Sub<&TensorRank2<D, I, J>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Sub for TensorRank2<D, I, J>

Source§

type Output = TensorRank2<D, I, J>

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> SubAssign<&TensorRank2<D, I, J>> for TensorRank2<D, I, J>

Source§

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

Performs the -= operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> SubAssign for TensorRank2<D, I, J>

Source§

fn sub_assign(&mut self, tensor_rank_2: Self)

Performs the -= operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Sum for TensorRank2<D, I, J>

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> Tensor for TensorRank2<D, I, J>

Source§

type Item = TensorRank1<D, J>

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> TensorArray for TensorRank2<D, I, J>

Source§

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

The type of array corresponding to the tensor.
Source§

type Item = TensorRank1<D, J>

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> Freeze for TensorRank2<D, I, J>

§

impl<const D: usize, const I: usize, const J: usize> RefUnwindSafe for TensorRank2<D, I, J>

§

impl<const D: usize, const I: usize, const J: usize> Send for TensorRank2<D, I, J>

§

impl<const D: usize, const I: usize, const J: usize> Sync for TensorRank2<D, I, J>

§

impl<const D: usize, const I: usize, const J: usize> Unpin for TensorRank2<D, I, J>

§

impl<const D: usize, const I: usize, const J: usize> UnwindSafe for TensorRank2<D, I, J>

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