Trait nalgebra::Outer
[−]
[src]
pub trait Outer { type OuterProductType; fn outer(&self, other: &Self) -> Self::OuterProductType; }
Traits of objects having an outer product.
Associated Types
type OuterProductType
Result type of the outer product.
Required Methods
fn outer(&self, other: &Self) -> Self::OuterProductType
Computes the outer product: a * b
Implementors
impl<N: Copy + BaseNum> Outer for DVector<N>
impl<N: Copy + Mul<N, Output=N> + Zero> Outer for Vector1<N>
impl<N: Copy + Mul<N, Output=N> + Zero> Outer for Vector2<N>
impl<N: Copy + Mul<N, Output=N> + Zero> Outer for Vector3<N>
impl<N: Copy + Mul<N, Output=N> + Zero> Outer for Vector4<N>
impl<N: Copy + Mul<N, Output=N> + Zero> Outer for Vector5<N>
impl<N: Copy + Mul<N, Output=N> + Zero> Outer for Vector6<N>