pub trait Rank2: Sized {
type Transpose;
// Required methods
fn cholesky_decomposition(&self) -> Result<Self, TensorError>;
fn deviatoric(&self) -> Self;
fn deviatoric_and_trace(&self) -> (Self, TensorRank0);
fn is_diagonal(&self) -> bool;
fn is_identity(&self) -> bool;
fn squared_trace(&self) -> TensorRank0;
fn trace(&self) -> TensorRank0;
fn transpose(&self) -> Self::Transpose;
// Provided method
fn second_invariant(&self) -> TensorRank0 { ... }
}
Expand description
Common methods for rank-2 tensors.
Required Associated Types§
Required Methods§
Sourcefn cholesky_decomposition(&self) -> Result<Self, TensorError>
fn cholesky_decomposition(&self) -> Result<Self, TensorError>
Returns the Cholesky decomposition of the rank-2 tensor.
Sourcefn deviatoric(&self) -> Self
fn deviatoric(&self) -> Self
Returns the deviatoric component of the rank-2 tensor.
Sourcefn deviatoric_and_trace(&self) -> (Self, TensorRank0)
fn deviatoric_and_trace(&self) -> (Self, TensorRank0)
Returns the deviatoric component and trace of the rank-2 tensor.
Sourcefn is_diagonal(&self) -> bool
fn is_diagonal(&self) -> bool
Checks whether the tensor is a diagonal tensor.
Sourcefn is_identity(&self) -> bool
fn is_identity(&self) -> bool
Checks whether the tensor is the identity tensor.
Sourcefn squared_trace(&self) -> TensorRank0
fn squared_trace(&self) -> TensorRank0
Returns the trace of the rank-2 tensor squared.
Sourcefn trace(&self) -> TensorRank0
fn trace(&self) -> TensorRank0
Returns the trace of the rank-2 tensor.
Provided Methods§
Sourcefn second_invariant(&self) -> TensorRank0
fn second_invariant(&self) -> TensorRank0
Returns the second invariant of the rank-2 tensor.
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.