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

Result type of the outer product.

Required Methods

Computes the outer product: a * b

Implementors