pub struct QrResult<T> {
pub q: Array2<T>,
pub r: Array2<T>,
}Expand description
Result of QR decomposition.
Fields§
§q: Array2<T>Q factor (orthogonal/unitary)
r: Array2<T>R factor (upper triangular)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for QrResult<T>
impl<T> RefUnwindSafe for QrResult<T>where
T: RefUnwindSafe,
impl<T> Send for QrResult<T>where
T: Send,
impl<T> Sync for QrResult<T>where
T: Sync,
impl<T> Unpin for QrResult<T>
impl<T> UnwindSafe for QrResult<T>where
T: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more