pub struct qr<T: Number> {
pub Q: Option<Matrix<T>>,
pub Qt: Option<Matrix<T>>,
pub R: Matrix<T>,
pub q: Vec<Vector<T>>,
}Fields§
§Q: Option<Matrix<T>>§Qt: Option<Matrix<T>>§R: Matrix<T>§q: Vec<Vector<T>>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for qr<T>
impl<T> RefUnwindSafe for qr<T>where
T: RefUnwindSafe,
impl<T> Send for qr<T>where
T: Send,
impl<T> Sync for qr<T>where
T: Sync,
impl<T> Unpin for qr<T>where
T: Unpin,
impl<T> UnwindSafe for qr<T>where
T: UnwindSafe,
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