Trait ndarray_linalg::qr::QR [] [src]

pub trait QR {
    type Q;
    type R;
    fn qr(&self) -> Result<(Self::Q, Self::R)>;
}

Associated Types

Required Methods

Implementors