pub type LinalgResult<N> = Result<Vec<(Array<N>, Array<N>)>, ArrayError>;
qr decomposition result type definition
pub enum LinalgResult<N> { Ok(Vec<(Array<N>, Array<N>)>), Err(ArrayError), }
Contains the success value
Contains the error value