pub struct Vector(/* private fields */);
Expand description
A vector.
Trait Implementations§
Source§impl AddAssign<&Vector> for Vector
impl AddAssign<&Vector> for Vector
Source§fn add_assign(&mut self, vector: &Self)
fn add_assign(&mut self, vector: &Self)
Performs the
+=
operation. Read moreSource§impl AddAssign for Vector
impl AddAssign for Vector
Source§fn add_assign(&mut self, vector: Self)
fn add_assign(&mut self, vector: Self)
Performs the
+=
operation. Read moreSource§impl DivAssign<&f64> for Vector
impl DivAssign<&f64> for Vector
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 DivAssign<f64> for Vector
impl DivAssign<f64> for Vector
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 FromIterator<Vector> for SquareMatrix
impl FromIterator<Vector> for SquareMatrix
Source§impl FromIterator<f64> for Vector
impl FromIterator<f64> for Vector
Source§fn from_iter<Ii: IntoIterator<Item = TensorRank0>>(into_iterator: Ii) -> Self
fn from_iter<Ii: IntoIterator<Item = TensorRank0>>(into_iterator: Ii) -> Self
Creates a value from an iterator. Read more
Source§impl MulAssign<&f64> for Vector
impl MulAssign<&f64> for Vector
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 MulAssign<f64> for Vector
impl MulAssign<f64> for Vector
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 SubAssign<&Vector> for Vector
impl SubAssign<&Vector> for Vector
Source§fn sub_assign(&mut self, vector: &Self)
fn sub_assign(&mut self, vector: &Self)
Performs the
-=
operation. Read moreSource§impl SubAssign for Vector
impl SubAssign for Vector
Source§fn sub_assign(&mut self, vector: Self)
fn sub_assign(&mut self, vector: Self)
Performs the
-=
operation. Read moreSource§impl Tensor for Vector
impl Tensor for Vector
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.
Auto Trait Implementations§
impl Freeze for Vector
impl RefUnwindSafe for Vector
impl Send for Vector
impl Sync for Vector
impl Unpin for Vector
impl UnwindSafe for Vector
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