[][src]Trait numeric_array::geometry::Geometric

pub trait Geometric<T> {
    fn scalar_product(&self, other: &Self) -> T;
fn abs_scalar_product(&self, other: &Self) -> T
    where
        T: Signed
;
fn norm_squared(&self) -> T; }

Required methods

fn scalar_product(&self, other: &Self) -> T

fn abs_scalar_product(&self, other: &Self) -> T where
    T: Signed

fn norm_squared(&self) -> T

Loading content...

Implementors

impl<T, N: ArrayLength<T>> Geometric<T> for NumericArray<T, N> where
    T: Add<Output = T> + Mul<Output = T> + Zero + Copy
[src]

Loading content...