Trait rlapack::matrix::Matrix [] [src]

pub trait Matrix<T> {
    fn rows(&self) -> c_int;
    fn cols(&self) -> c_int;
    fn as_ptr(&self) -> *const T;
    fn as_mut_ptr(&mut self) -> *mut T;

    fn transpose(&self) -> Transpose { ... }
}

Required Methods

fn rows(&self) -> c_int

fn cols(&self) -> c_int

fn as_ptr(&self) -> *const T

fn as_mut_ptr(&mut self) -> *mut T

Provided Methods

fn transpose(&self) -> Transpose

Implementors