Trait ndarray_linalg::vector::Vector
[−]
[src]
pub trait Vector {
type Scalar;
fn norm_l1(&self) -> Self::Scalar;
fn norm_l2(&self) -> Self::Scalar;
fn norm_max(&self) -> Self::Scalar;
fn norm(&self) -> Self::Scalar { ... }
}Methods for vectors
Associated Types
type Scalar
Required Methods
fn norm_l1(&self) -> Self::Scalar
L-1 norm
fn norm_l2(&self) -> Self::Scalar
L-2 norm
fn norm_max(&self) -> Self::Scalar
maximum norm