Trait scirust::matrix::transpose::traits::Frame [] [src]

pub trait Frame<T: CommutativeMonoidAddPartial + CommutativeMonoidMulPartial>: Transpose<T> {
    fn gram(&self) -> Self;
}

Frame and Grammian operators for a matrix.

Required Methods

fn gram(&self) -> Self

Returns the gram matrix : A' * A

Implementors