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

Trait for matrix norms.

Required Methods

Computes the matrix norm.

Implementors