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 + Mul<N, Output=N> + Zero> Outer for Vec1<N>impl<N: Copy + Mul<N, Output=N> + Zero> Outer for Vec2<N>impl<N: Copy + Mul<N, Output=N> + Zero> Outer for Vec3<N>impl<N: Copy + Mul<N, Output=N> + Zero> Outer for Vec4<N>impl<N: Copy + Mul<N, Output=N> + Zero> Outer for Vec5<N>impl<N: Copy + Mul<N, Output=N> + Zero> Outer for Vec6<N>