Trait MatrixTranspose

Source
pub trait MatrixTranspose {
    type Output;

    // Required method
    fn transpose(self) -> Self::Output;
}
Expand description

行列の転置

Required Associated Types§

Source

type Output

転置行列の型

Required Methods§

Source

fn transpose(self) -> Self::Output

転置した行列を返す。

Implementors§