pub struct TensorRank2Vec<const D: usize, const I: usize, const J: usize>(/* private fields */);
Expand description
A vector of d-dimensional tensors of rank 2.
D
is the dimension, I
, J
are the configurations.
Trait Implementations§
Source§impl<const D: usize, const I: usize, const J: usize> Add<&TensorRank2Vec<D, I, J>> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Add<&TensorRank2Vec<D, I, J>> for TensorRank2Vec<D, I, J>
Source§impl<const D: usize, const I: usize, const J: usize> AddAssign<&TensorRank2Vec<D, I, J>> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> AddAssign<&TensorRank2Vec<D, I, J>> for TensorRank2Vec<D, I, J>
Source§fn add_assign(&mut self, tensor_rank_2_vec: &Self)
fn add_assign(&mut self, tensor_rank_2_vec: &Self)
Performs the
+=
operation. Read moreSource§impl<const D: usize, const I: usize, const J: usize> AddAssign for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> AddAssign for TensorRank2Vec<D, I, J>
Source§fn add_assign(&mut self, tensor_rank_2_vec: Self)
fn add_assign(&mut self, tensor_rank_2_vec: Self)
Performs the
+=
operation. Read moreSource§impl<const D: usize, const I: usize, const J: usize> Clone for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Clone for TensorRank2Vec<D, I, J>
Source§fn clone(&self) -> TensorRank2Vec<D, I, J>
fn clone(&self) -> TensorRank2Vec<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> Div<&f64> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Div<&f64> for TensorRank2Vec<D, I, J>
Source§type Output = TensorRank2Vec<D, I, J>
type Output = TensorRank2Vec<D, I, J>
The resulting type after applying the
/
operator.Source§impl<const D: usize, const I: usize, const J: usize> Div<f64> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Div<f64> for TensorRank2Vec<D, I, J>
Source§type Output = TensorRank2Vec<D, I, J>
type Output = TensorRank2Vec<D, I, J>
The resulting type after applying the
/
operator.Source§impl<const D: usize, const I: usize, const J: usize> DivAssign<&f64> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> DivAssign<&f64> for TensorRank2Vec<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 TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> DivAssign<f64> for TensorRank2Vec<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> 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> FromIterator<TensorRank2Vec<D, I, J>> for TensorRank2Vec2D<D, I, J>
impl<const D: usize, const I: usize, const J: usize> FromIterator<TensorRank2Vec<D, I, J>> for TensorRank2Vec2D<D, I, J>
Source§fn from_iter<Ii: IntoIterator<Item = TensorRank2Vec<D, I, J>>>(
into_iterator: Ii,
) -> Self
fn from_iter<Ii: IntoIterator<Item = TensorRank2Vec<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> Index<usize> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Index<usize> for TensorRank2Vec<D, I, J>
Source§impl<const D: usize, const I: usize, const J: usize> IndexMut<usize> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> IndexMut<usize> for TensorRank2Vec<D, I, J>
Source§impl<const D: usize, const I: usize, const J: usize> Mul<&f64> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Mul<&f64> for TensorRank2Vec<D, I, J>
Source§type Output = TensorRank2Vec<D, I, J>
type Output = TensorRank2Vec<D, I, J>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> Mul<f64> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Mul<f64> for TensorRank2Vec<D, I, J>
Source§type Output = TensorRank2Vec<D, I, J>
type Output = TensorRank2Vec<D, I, J>
The resulting type after applying the
*
operator.Source§impl<const D: usize, const I: usize, const J: usize> MulAssign<&f64> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> MulAssign<&f64> for TensorRank2Vec<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 TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> MulAssign<f64> for TensorRank2Vec<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> Sub<&TensorRank2Vec<D, I, J>> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Sub<&TensorRank2Vec<D, I, J>> for TensorRank2Vec<D, I, J>
Source§impl<const D: usize, const I: usize, const J: usize> SubAssign<&TensorRank2Vec<D, I, J>> for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> SubAssign<&TensorRank2Vec<D, I, J>> for TensorRank2Vec<D, I, J>
Source§fn sub_assign(&mut self, tensor_rank_2_vec: &Self)
fn sub_assign(&mut self, tensor_rank_2_vec: &Self)
Performs the
-=
operation. Read moreSource§impl<const D: usize, const I: usize, const J: usize> SubAssign for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> SubAssign for TensorRank2Vec<D, I, J>
Source§fn sub_assign(&mut self, tensor_rank_2_vec: Self)
fn sub_assign(&mut self, tensor_rank_2_vec: Self)
Performs the
-=
operation. Read moreSource§impl<const D: usize, const I: usize, const J: usize> Tensor for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Tensor for TensorRank2Vec<D, I, J>
Source§type Item = TensorRank2<D, I, J>
type Item = TensorRank2<D, I, 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> TensorVec for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> TensorVec for TensorRank2Vec<D, I, J>
Source§type Item = TensorRank2<D, I, J>
type Item = TensorRank2<D, I, J>
The type of item encountered when iterating over the tensor.
Source§fn append(&mut self, other: &mut Self)
fn append(&mut self, other: &mut Self)
Moves all the items of other into self, leaving other empty.
Auto Trait Implementations§
impl<const D: usize, const I: usize, const J: usize> Freeze for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> RefUnwindSafe for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Send for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Sync for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> Unpin for TensorRank2Vec<D, I, J>
impl<const D: usize, const I: usize, const J: usize> UnwindSafe for TensorRank2Vec<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