Trait ndarray_linalg::opnorm::OperationNorm [] [src]

pub trait OperationNorm {
    type Output: RealScalar;
    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> { ... } }

Operator norm using *lange LAPACK routines

https://en.wikipedia.org/wiki/Operator_norm

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

impl<A, S> OperationNorm for ArrayBase<S, Ix2> where
    A: Scalar,
    S: Data<Elem = A>, 
[src]

[src]

[src]

[src]

[src]

Implementors