pub trait MatrixNorm<T, M>where
    M: BaseMatrix<T>,
{ fn norm(&self, m: &M) -> T; }
Expand description

Trait for matrix norms.

Required Methods

Computes the matrix norm.

Implementors