Trait matrix::operation::Multiply
[−]
[src]
pub trait Multiply<Right: ?Sized, Output> { fn multiply(&self, &Right) -> Output; }
A multiplication.
Required Methods
fn multiply(&self, &Right) -> Output
Perform the multiplication.
Implementors
impl<T> Multiply<Diagonal<T>, Compressed<T>> for Compressed<T> where T: Element + Number