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>
impl<const D: usize, const I: usize, const J: usize> TensorRank2<D, I, J>
Sourcepub fn as_tensor_rank_1(&self) -> TensorRank1<9, 88>
pub fn as_tensor_rank_1(&self) -> TensorRank1<9, 88>
Returns the rank-2 tensor reshaped as a rank-1 tensor.
Sourcepub fn determinant(&self) -> TensorRank0
pub fn determinant(&self) -> TensorRank0
Returns the determinant of the rank-2 tensor.
Sourcepub fn dyad(vector_a: &TensorRank1<D, I>, vector_b: &TensorRank1<D, J>) -> Self
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.
Sourcepub fn inverse(&self) -> TensorRank2<D, J, I>
pub fn inverse(&self) -> TensorRank2<D, J, I>
Returns the inverse of the rank-2 tensor.
Sourcepub fn inverse_and_determinant(&self) -> (TensorRank2<D, J, I>, TensorRank0)
pub fn inverse_and_determinant(&self) -> (TensorRank2<D, J, I>, TensorRank0)
Returns the inverse and determinant of the rank-2 tensor.
Sourcepub fn inverse_transpose(&self) -> Self
pub fn inverse_transpose(&self) -> Self
Returns the inverse transpose of the rank-2 tensor.
Sourcepub fn inverse_transpose_and_determinant(&self) -> (Self, TensorRank0)
pub fn inverse_transpose_and_determinant(&self) -> (Self, TensorRank0)
Returns the inverse transpose and determinant of the rank-2 tensor.
Sourcepub fn lu_decomposition(&self) -> (TensorRank2<D, I, 88>, TensorRank2<D, 88, J>)
pub fn lu_decomposition(&self) -> (TensorRank2<D, I, 88>, TensorRank2<D, 88, J>)
Returns the LU decomposition of the rank-2 tensor.
Sourcepub fn lu_decomposition_inverse(
&self,
) -> (TensorRank2<D, 88, I>, TensorRank2<D, J, 88>)
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>
impl<const D: usize, const I: usize, const J: usize> Add<&TensorRank2<D, I, J>> for TensorRank2<D, I, J>
Source§impl<const D: usize, const I: usize, const J: usize> Add<TensorRank2<D, I, J>> for &TensorRank2<D, I, J>
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>
type Output = TensorRank2<D, I, J>
The resulting type after applying the
+
operator.Source§impl<const D: usize, const I: usize, const J: usize> AddAssign<&TensorRank2<D, I, J>> for TensorRank2<D, I, J>
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)
fn add_assign(&mut self, tensor_rank_2: &Self)
Performs the
+=
operation. Read moreSource§impl<const D: usize, const I: usize, const J: usize> AddAssign for TensorRank2<D, I, J>
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)
fn add_assign(&mut self, tensor_rank_2: Self)
Performs the
+=
operation. Read moreSource§impl<const D: usize, const I: usize, const J: usize> Clone for TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Clone for TensorRank2<D, I, J>
Source§fn clone(&self) -> TensorRank2<D, I, J>
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§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>
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>
type Output = TensorRank4<D, M, N, O, P>
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>
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>
type Output = TensorRank4<D, I, J, K, L>
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>
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>
type Output = TensorRank4<D, M, J, O, P>
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>
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>
type Output = TensorRank4<D, I, N, K, L>
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>
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>
type Output = TensorRank2<D, I, J>
fn contract_third_fourth_indices_with_first_second_indices_of( &self, tensor_rank_2: &TensorRank2<D, K, L>, ) -> Self::Output
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>
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>
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> Div<&f64> for &TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Div<&f64> for &TensorRank2<D, I, J>
Source§type Output = TensorRank2<D, I, J>
type Output = TensorRank2<D, I, J>
The resulting type after applying the
/
operator.Source§impl<const D: usize, const I: usize, const J: usize> Div<&f64> for TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Div<&f64> for TensorRank2<D, I, J>
Source§type Output = TensorRank2<D, I, J>
type Output = TensorRank2<D, I, J>
The resulting type after applying the
/
operator.Source§impl<const D: usize, const I: usize, const J: usize> Div<TensorRank2<D, I, J>> for TensorRank1<D, I>
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>
type Output = TensorRank1<D, J>
The resulting type after applying the
/
operator.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>
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>
type Output = TensorRank2<3, K, L>
The resulting type after applying the
/
operator.Source§impl<const D: usize, const I: usize, const J: usize> Div<f64> for &TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Div<f64> for &TensorRank2<D, I, J>
Source§type Output = TensorRank2<D, I, J>
type Output = TensorRank2<D, I, J>
The resulting type after applying the
/
operator.Source§impl<const D: usize, const I: usize, const J: usize> Div<f64> for TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Div<f64> for TensorRank2<D, I, J>
Source§type Output = TensorRank2<D, I, J>
type Output = TensorRank2<D, I, J>
The resulting type after applying the
/
operator.Source§impl<const D: usize, const I: usize, const J: usize> DivAssign<&f64> for TensorRank2<D, I, J>
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)
fn div_assign(&mut self, tensor_rank_0: &TensorRank0)
Performs the
/=
operation. Read moreSource§impl<const D: usize, const I: usize, const J: usize> DivAssign<f64> for TensorRank2<D, I, J>
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)
fn div_assign(&mut self, tensor_rank_0: TensorRank0)
Performs the
/=
operation. Read moreSource§impl From<TensorRank2<3, 0, 0>> for TensorRank2<3, 1, 0>
impl From<TensorRank2<3, 0, 0>> for TensorRank2<3, 1, 0>
Source§fn from(tensor_rank_2: TensorRank2<3, 0, 0>) -> Self
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>
impl From<TensorRank2<3, 0, 0>> for TensorRank2<3, 1, 1>
Source§fn from(tensor_rank_2: TensorRank2<3, 0, 0>) -> Self
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>
impl From<TensorRank2<3, 0, 1>> for TensorRank2<3, 0, 0>
Source§fn from(tensor_rank_2: TensorRank2<3, 0, 1>) -> Self
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>
impl From<TensorRank2<3, 1, 0>> for TensorRank2<3, 0, 0>
Source§fn from(tensor_rank_2: TensorRank2<3, 1, 0>) -> Self
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>
impl From<TensorRank2<3, 1, 1>> for TensorRank2<3, 1, 0>
Source§fn from(tensor_rank_2: TensorRank2<3, 1, 1>) -> Self
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>
impl From<TensorRank2<3, 1, 2>> for TensorRank2<3, 1, 0>
Source§fn from(tensor_rank_2: TensorRank2<3, 1, 2>) -> Self
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>>
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
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>
impl<const D: usize, const I: usize, const J: usize> From<Vec<Vec<f64>>> for TensorRank2<D, I, J>
Source§impl<const D: usize, const I: usize, const J: usize> FromIterator<TensorRank1<D, J>> for TensorRank2<D, I, J>
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
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>
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
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>
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
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>
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
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>
impl<const D: usize, const I: usize, const J: usize> Hessian for TensorRank2<D, I, J>
Source§fn is_positive_definite(&self) -> bool
fn is_positive_definite(&self) -> bool
Checks whether the Hessian is positive-definite.
Source§impl<const D: usize, const I: usize, const J: usize> IndexMut<usize> for TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> IndexMut<usize> for TensorRank2<D, I, J>
Source§impl<const D: usize, const I: usize, const J: usize> Mul<&TensorRank1<D, J>> for &TensorRank2<D, I, J>
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>
type Output = TensorRank1<D, I>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<&TensorRank1<D, J>> for TensorRank2<D, I, J>
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>
type Output = TensorRank1<D, I>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const W: usize> Mul<&TensorRank1List<D, J, W>> for &TensorRank2<D, I, J>
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>
type Output = TensorRank1List<D, I, W>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const W: usize> Mul<&TensorRank1List<D, J, W>> for TensorRank2<D, I, J>
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>
type Output = TensorRank1List<D, I, W>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<&TensorRank1Vec<D, J>> for &TensorRank2<D, I, J>
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>
type Output = TensorRank1Vec<D, I>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<&TensorRank1Vec<D, J>> for TensorRank2<D, I, J>
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>
type Output = TensorRank1Vec<D, I>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<&TensorRank2<D, J, K>> for &TensorRank2<D, I, J>
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>
type Output = TensorRank2<D, I, K>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<&TensorRank2<D, J, K>> for TensorRank2<D, I, J>
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>
type Output = TensorRank2<D, I, K>
The resulting type after applying the
*
operator.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>
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>
type Output = TensorRank2List2D<D, I, K, W, X>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<&TensorRank2<D, J, K>> for TensorRank2Vec2D<D, I, J>
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>
type Output = TensorRank2Vec2D<D, I, K>
The resulting type after applying the
*
operator.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>
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>
type Output = TensorRank4<D, I, J, K, M>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<&f64> for &TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Mul<&f64> for &TensorRank2<D, I, J>
Source§type Output = TensorRank2<D, I, J>
type Output = TensorRank2<D, I, J>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<&f64> for TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Mul<&f64> for TensorRank2<D, I, J>
Source§type Output = TensorRank2<D, I, J>
type Output = TensorRank2<D, I, J>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<TensorRank1<D, J>> for &TensorRank2<D, I, J>
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>
type Output = TensorRank1<D, I>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<TensorRank1<D, J>> for TensorRank2<D, I, J>
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>
type Output = TensorRank1<D, I>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const W: usize> Mul<TensorRank1List<D, J, W>> for &TensorRank2<D, I, J>
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>
type Output = TensorRank1List<D, I, W>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const W: usize> Mul<TensorRank1List<D, J, W>> for TensorRank2<D, I, J>
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>
type Output = TensorRank1List<D, I, W>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<TensorRank1Vec<D, J>> for &TensorRank2<D, I, J>
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>
type Output = TensorRank1Vec<D, I>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<TensorRank1Vec<D, J>> for TensorRank2<D, I, J>
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>
type Output = TensorRank1Vec<D, I>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<TensorRank2<D, J, K>> for &TensorRank2<D, I, J>
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>
type Output = TensorRank2<D, I, K>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<TensorRank2<D, J, K>> for TensorRank2<D, I, J>
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>
type Output = TensorRank2<D, I, K>
The resulting type after applying the
*
operator.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>
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>
type Output = TensorRank2List2D<D, I, K, W, X>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<TensorRank2<D, J, K>> for TensorRank2Vec2D<D, I, J>
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>
type Output = TensorRank2Vec2D<D, I, K>
The resulting type after applying the
*
operator.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>
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>
type Output = TensorRank4<D, I, J, K, M>
The resulting type after applying the
*
operator.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>
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>
type Output = TensorRank2List2D<D, I, K, W, X>
The resulting type after applying the
*
operator.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>
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>
type Output = TensorRank2List2D<D, I, K, W, X>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<TensorRank2Vec2D<D, J, K>> for &TensorRank2<D, I, J>
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>
type Output = TensorRank2Vec2D<D, I, K>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize, const K: usize> Mul<TensorRank2Vec2D<D, J, K>> for TensorRank2<D, I, J>
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>
type Output = TensorRank2Vec2D<D, I, K>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<f64> for &TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Mul<f64> for &TensorRank2<D, I, J>
Source§type Output = TensorRank2<D, I, J>
type Output = TensorRank2<D, I, J>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<f64> for TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Mul<f64> for TensorRank2<D, I, J>
Source§type Output = TensorRank2<D, I, J>
type Output = TensorRank2<D, I, J>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> MulAssign<&f64> for TensorRank2<D, I, J>
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)
fn mul_assign(&mut self, tensor_rank_0: &TensorRank0)
Performs the
*=
operation. Read moreSource§impl<const D: usize, const I: usize, const J: usize> MulAssign<f64> for TensorRank2<D, I, J>
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)
fn mul_assign(&mut self, tensor_rank_0: TensorRank0)
Performs the
*=
operation. Read moreSource§impl<const D: usize, const I: usize, const J: usize> Rank2 for TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Rank2 for TensorRank2<D, I, J>
Source§type Transpose = TensorRank2<D, J, I>
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>
fn cholesky_decomposition(&self) -> Result<TensorRank2<D, I, J>, TensorError>
Returns the Cholesky decomposition of the rank-2 tensor.
Source§fn deviatoric(&self) -> Self
fn deviatoric(&self) -> Self
Returns the deviatoric component of the rank-2 tensor.
Source§fn deviatoric_and_trace(&self) -> (Self, TensorRank0)
fn deviatoric_and_trace(&self) -> (Self, TensorRank0)
Returns the deviatoric component and trace of the rank-2 tensor.
Source§fn is_diagonal(&self) -> bool
fn is_diagonal(&self) -> bool
Checks whether the tensor is a diagonal tensor.
Source§fn is_identity(&self) -> bool
fn is_identity(&self) -> bool
Checks whether the tensor is the identity tensor.
Source§fn squared_trace(&self) -> TensorRank0
fn squared_trace(&self) -> TensorRank0
Returns the trace of the rank-2 tensor squared.
Source§fn trace(&self) -> TensorRank0
fn trace(&self) -> TensorRank0
Returns the trace of the rank-2 tensor.
Source§fn second_invariant(&self) -> TensorRank0
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>
impl<const D: usize, const I: usize, const J: usize> Sub<&TensorRank2<D, I, J>> for TensorRank2<D, I, J>
Source§impl<const D: usize, const I: usize, const J: usize> SubAssign<&TensorRank2<D, I, J>> for TensorRank2<D, I, J>
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)
fn sub_assign(&mut self, tensor_rank_2: &Self)
Performs the
-=
operation. Read moreSource§impl<const D: usize, const I: usize, const J: usize> SubAssign for TensorRank2<D, I, J>
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)
fn sub_assign(&mut self, tensor_rank_2: Self)
Performs the
-=
operation. Read moreSource§impl<const D: usize, const I: usize, const J: usize> Tensor for TensorRank2<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Tensor for TensorRank2<D, I, J>
Source§type Item = TensorRank1<D, J>
type Item = TensorRank1<D, J>
The type of item encountered when iterating over the tensor.
Source§fn iter_mut(&mut self) -> impl Iterator<Item = &mut Self::Item>
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
fn full_contraction(&self, tensor: &Self) -> TensorRank0
Returns the full contraction with another tensor.
Source§fn get_at(&self, _indices: &[usize]) -> &TensorRank0
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
fn get_at_mut(&mut self, _indices: &[usize]) -> &mut TensorRank0
Returns a mutable reference to the entry at the specified indices.
Source§fn norm(&self) -> TensorRank0
fn norm(&self) -> TensorRank0
Returns the tensor norm.
Source§fn norm_squared(&self) -> TensorRank0
fn norm_squared(&self) -> TensorRank0
Returns the tensor norm squared.
Source§fn normalized(self) -> Self
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>
impl<const D: usize, const I: usize, const J: usize> TensorArray for TensorRank2<D, I, J>
Source§type Item = TensorRank1<D, J>
type Item = TensorRank1<D, J>
The type of item encountered when iterating over the 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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more