pub trait MaxColNorm<A: Scalar> {
// Required method
fn max_col_norm(&self) -> A::Real;
}
Expand description
Trait defining the maximum column norm of an operator
If $A\in\mathbb{C}^{m\times n}$ the maximum column-norm is computed by first taking the Euclidian norm of each column and then returning the maximum of the column norms.