pub trait Tensorwhere
for<'a> Self: Sized + Debug + Display + Add<Self, Output = Self> + Add<&'a Self, Output = Self> + AddAssign + AddAssign<&'a Self> + Clone + Div<TensorRank0, Output = Self> + DivAssign<TensorRank0> + Mul<TensorRank0, Output = Self> + Sub<Self, Output = Self> + Sub<&'a Self, Output = Self> + SubAssign + SubAssign<&'a Self>,
Self::Item: Tensor,{
type Item;
// Required methods
fn iter(&self) -> impl Iterator<Item = &Self::Item>;
fn iter_mut(&mut self) -> impl Iterator<Item = &mut Self::Item>;
// Provided methods
fn full_contraction(&self, tensor: &Self) -> TensorRank0 { ... }
fn get_at(&self, _indices: &[usize]) -> &TensorRank0 { ... }
fn get_at_mut(&mut self, _indices: &[usize]) -> &mut TensorRank0 { ... }
fn is_zero(&self) -> bool { ... }
fn norm(&self) -> TensorRank0 { ... }
fn norm_squared(&self) -> TensorRank0 { ... }
fn normalize(&mut self) { ... }
fn normalized(self) -> Self { ... }
}
Expand description
Common methods for tensors.
Required Associated Types§
Required Methods§
Provided Methods§
Sourcefn full_contraction(&self, tensor: &Self) -> TensorRank0
fn full_contraction(&self, tensor: &Self) -> TensorRank0
Returns the full contraction with another tensor.
Sourcefn get_at(&self, _indices: &[usize]) -> &TensorRank0
fn get_at(&self, _indices: &[usize]) -> &TensorRank0
Returns a reference to the entry at the specified indices.
Sourcefn 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.
Sourcefn norm(&self) -> TensorRank0
fn norm(&self) -> TensorRank0
Returns the tensor norm.
Sourcefn norm_squared(&self) -> TensorRank0
fn norm_squared(&self) -> TensorRank0
Returns the tensor norm squared.
Sourcefn normalized(self) -> Self
fn normalized(self) -> Self
Returns the tensor normalized.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.