pub trait Norm { type Real; // Required method fn norm_l2(&self) -> Result<Self::Real, LapackError>; }
Matrix norm trait