Trait ndarray_linalg::opnorm::OperationNorm
[−]
[src]
pub trait OperationNorm { type Output; fn opnorm(&self, t: NormType) -> Self::Output; fn opnorm_one(&self) -> Self::Output { ... } fn opnorm_inf(&self) -> Self::Output { ... } fn opnorm_fro(&self) -> Self::Output { ... } }
Associated Types
type Output
Required Methods
Provided Methods
fn opnorm_one(&self) -> Self::Output
fn opnorm_inf(&self) -> Self::Output
fn opnorm_fro(&self) -> Self::Output
Implementors
impl<A, S> OperationNorm for ArrayBase<S, Ix2> where
A: LapackScalar + AssociatedReal,
S: Data<Elem = A>,