Trait vector_space::OuterProduct[][src]

pub trait OuterProduct<T = Self>: VectorSpace {
    type Output;
    fn outer(self, other: T) -> Self::Output;
}

This trait defines the outer product.

Associated Types

type Output[src]

The output type of the outer product.

Loading content...

Required methods

fn outer(self, other: T) -> Self::Output[src]

Computes the outer product.

Loading content...

Implementors

Loading content...