[][src]Struct rulinalg::norm::Euclidean

pub struct Euclidean;

The Euclidean norm

The Euclidean norm computes the square-root of the sum of squares.

||v|| = SQRT(SUM(v_i * v_i))

Trait Implementations

impl<T: Float> VectorNorm<T> for Euclidean[src]

impl<T: Float, M: BaseMatrix<T>> MatrixNorm<T, M> for Euclidean[src]

impl Debug for Euclidean[src]

Auto Trait Implementations

impl Sync for Euclidean

impl Send for Euclidean

impl Unpin for Euclidean

impl UnwindSafe for Euclidean

impl RefUnwindSafe for Euclidean

Blanket Implementations

impl<U, T> VectorMetric<T> for U where
    T: Copy + Sub<T, Output = T>,
    U: VectorNorm<T>, 
[src]

impl<'a, 'b, U, T, M1, M2> MatrixMetric<'a, 'b, T, M1, M2> for U where
    M1: 'a + BaseMatrix<T>,
    M2: 'b + BaseMatrix<T>,
    U: MatrixNorm<T, M1>,
    &'a M1: Sub<&'b M2>,
    <&'a M1 as Sub<&'b M2>>::Output == M1, 
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]