pub struct QrDecomposition {
pub q: BoundedOp,
pub r: BoundedOp,
}Expand description
QR decomposition result: A = Q * R where Q is orthogonal and R is upper triangular.
Fields§
§q: BoundedOp§r: BoundedOpTrait Implementations§
Source§impl Clone for QrDecomposition
impl Clone for QrDecomposition
Source§fn clone(&self) -> QrDecomposition
fn clone(&self) -> QrDecomposition
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for QrDecomposition
impl RefUnwindSafe for QrDecomposition
impl Send for QrDecomposition
impl Sync for QrDecomposition
impl Unpin for QrDecomposition
impl UnsafeUnpin for QrDecomposition
impl UnwindSafe for QrDecomposition
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