pub struct SquareMatrix(/* private fields */);
Expand description
A square matrix.
Trait Implementations§
Source§impl Add<&SquareMatrix> for SquareMatrix
impl Add<&SquareMatrix> for SquareMatrix
Source§impl Add for SquareMatrix
impl Add for SquareMatrix
Source§impl AddAssign<&SquareMatrix> for SquareMatrix
impl AddAssign<&SquareMatrix> for SquareMatrix
Source§fn add_assign(&mut self, vector: &Self)
fn add_assign(&mut self, vector: &Self)
Performs the
+=
operation. Read moreSource§impl AddAssign for SquareMatrix
impl AddAssign for SquareMatrix
Source§fn add_assign(&mut self, vector: Self)
fn add_assign(&mut self, vector: Self)
Performs the
+=
operation. Read moreSource§impl Clone for SquareMatrix
impl Clone for SquareMatrix
Source§fn clone(&self) -> SquareMatrix
fn clone(&self) -> SquareMatrix
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 Debug for SquareMatrix
impl Debug for SquareMatrix
Source§impl Display for SquareMatrix
impl Display for SquareMatrix
Source§impl Div<&f64> for SquareMatrix
impl Div<&f64> for SquareMatrix
Source§type Output = SquareMatrix
type Output = SquareMatrix
The resulting type after applying the
/
operator.Source§impl Div<f64> for SquareMatrix
impl Div<f64> for SquareMatrix
Source§type Output = SquareMatrix
type Output = SquareMatrix
The resulting type after applying the
/
operator.Source§impl DivAssign<&f64> for SquareMatrix
impl DivAssign<&f64> for SquareMatrix
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 SquareMatrix
impl DivAssign<f64> for SquareMatrix
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 Hessian for SquareMatrix
impl Hessian for SquareMatrix
Source§fn is_positive_definite(&self) -> bool
fn is_positive_definite(&self) -> bool
Checks whether the Hessian is positive-definite.
Source§impl Index<usize> for SquareMatrix
impl Index<usize> for SquareMatrix
Source§impl IndexMut<usize> for SquareMatrix
impl IndexMut<usize> for SquareMatrix
Source§impl Mul<&f64> for &SquareMatrix
impl Mul<&f64> for &SquareMatrix
Source§type Output = SquareMatrix
type Output = SquareMatrix
The resulting type after applying the
*
operator.Source§impl Mul<&f64> for SquareMatrix
impl Mul<&f64> for SquareMatrix
Source§type Output = SquareMatrix
type Output = SquareMatrix
The resulting type after applying the
*
operator.Source§impl Mul<f64> for SquareMatrix
impl Mul<f64> for SquareMatrix
Source§type Output = SquareMatrix
type Output = SquareMatrix
The resulting type after applying the
*
operator.Source§impl MulAssign<&f64> for SquareMatrix
impl MulAssign<&f64> for SquareMatrix
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 SquareMatrix
impl MulAssign<f64> for SquareMatrix
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 PartialEq for SquareMatrix
impl PartialEq for SquareMatrix
Source§impl Rank2 for SquareMatrix
impl Rank2 for SquareMatrix
Source§type Transpose = SquareMatrix
type Transpose = SquareMatrix
The type that is the transpose of the tensor.
Source§fn cholesky_decomposition(&self) -> Result<SquareMatrix, TensorError>
fn cholesky_decomposition(&self) -> Result<SquareMatrix, 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 Sub<&SquareMatrix> for SquareMatrix
impl Sub<&SquareMatrix> for SquareMatrix
Source§impl Sub for SquareMatrix
impl Sub for SquareMatrix
Source§impl SubAssign<&SquareMatrix> for SquareMatrix
impl SubAssign<&SquareMatrix> for SquareMatrix
Source§fn sub_assign(&mut self, vector: &Self)
fn sub_assign(&mut self, vector: &Self)
Performs the
-=
operation. Read moreSource§impl SubAssign for SquareMatrix
impl SubAssign for SquareMatrix
Source§fn sub_assign(&mut self, vector: Self)
fn sub_assign(&mut self, vector: Self)
Performs the
-=
operation. Read moreSource§impl Tensor for SquareMatrix
impl Tensor for SquareMatrix
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 SquareMatrix
impl RefUnwindSafe for SquareMatrix
impl Send for SquareMatrix
impl Sync for SquareMatrix
impl Unpin for SquareMatrix
impl UnwindSafe for SquareMatrix
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