pub trait MatrixTranspose {
type Output;
// Required method
fn transpose(self) -> Self::Output;
}Expand description
行列の転置
pub trait MatrixTranspose {
type Output;
// Required method
fn transpose(self) -> Self::Output;
}行列の転置