Trait ndarray_linalg::opnorm::OperationNorm [−][src]
pub trait OperationNorm {
type Output: Scalar;
fn opnorm(&self, t: NormType) -> Result<Self::Output>;
fn opnorm_one(&self) -> Result<Self::Output> { ... }
fn opnorm_inf(&self) -> Result<Self::Output> { ... }
fn opnorm_fro(&self) -> Result<Self::Output> { ... }
}Expand description
Operator norm using *lange LAPACK routines
Associated Types
Required methods
Provided methods
fn opnorm_one(&self) -> Result<Self::Output>
fn opnorm_one(&self) -> Result<Self::Output>
the one norm of a matrix (maximum column sum)
fn opnorm_inf(&self) -> Result<Self::Output>
fn opnorm_inf(&self) -> Result<Self::Output>
the infinity norm of a matrix (maximum row sum)
fn opnorm_fro(&self) -> Result<Self::Output>
fn opnorm_fro(&self) -> Result<Self::Output>
the Frobenius norm of a matrix (square root of sum of squares)