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

pub trait OperationNorm {
    type Output;
    fn opnorm(&self, t: NormType) -> Self::Output;

    fn opnorm_one(&self) -> Self::Output { ... }
    fn opnorm_inf(&self) -> Self::Output { ... }
    fn opnorm_fro(&self) -> Self::Output { ... }
}

Associated Types

Required Methods

Provided Methods

Implementors