Trait Matrix

Source
pub trait Matrix {
    // Required method
    fn transpose(&mut self);
}

Required Methods§

Source

fn transpose(&mut self)

Implementors§

Source§

impl<T> Matrix for M2<T>
where T: Numeric,

Source§

impl<T> Matrix for M3<T>
where T: Numeric,

Source§

impl<T> Matrix for M4<T>
where T: Numeric,