Trait MaxColNorm

Source
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.

Required Methods§

Source

fn max_col_norm(&self) -> A::Real

Implementations on Foreign Types§

Source§

impl<S: Data<Elem = f32>> MaxColNorm<f32> for ArrayBase<S, Ix2>

Source§

fn max_col_norm(&self) -> <f32 as Scalar>::Real

Source§

impl<S: Data<Elem = f64>> MaxColNorm<f64> for ArrayBase<S, Ix2>

Source§

fn max_col_norm(&self) -> <f64 as Scalar>::Real

Source§

impl<S: Data<Elem = c32>> MaxColNorm<Complex<f32>> for ArrayBase<S, Ix2>

Source§

fn max_col_norm(&self) -> <c32 as Scalar>::Real

Source§

impl<S: Data<Elem = c64>> MaxColNorm<Complex<f64>> for ArrayBase<S, Ix2>

Source§

fn max_col_norm(&self) -> <c64 as Scalar>::Real

Implementors§