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

Wikipedia article on operator norm

Required Associated Types

the value of norm

Required Methods

Provided Methods

the one norm of a matrix (maximum column sum)

the infinity norm of a matrix (maximum row sum)

the Frobenius norm of a matrix (square root of sum of squares)

Implementations on Foreign Types

Implementors