pub struct QRDecomposition<T> { /* private fields */ }Expand description
QR Decomposition.
Based on Apache Commons Math and JAMA.
For an m-by-n matrix A, the QR decomposition is an m-by-m orthogonal matrix Q and an m-by-n upper triangular (or trapezoidal) matrix R, so that A = Q*R.
The QR decompostion always exists, even if the matrix does not have full rank. The primary use of the QR decomposition is in the least squares solution of nonsquare systems of simultaneous linear equations. This will fail if is_full_rank() returns false.
Implementations§
Source§impl<T: Float + ApproxEq<T>> QRDecomposition<T>
impl<T: Float + ApproxEq<T>> QRDecomposition<T>
Auto Trait Implementations§
impl<T> Freeze for QRDecomposition<T>
impl<T> RefUnwindSafe for QRDecomposition<T>where
T: RefUnwindSafe,
impl<T> Send for QRDecomposition<T>where
T: Send,
impl<T> Sync for QRDecomposition<T>where
T: Sync,
impl<T> Unpin for QRDecomposition<T>where
T: Unpin,
impl<T> UnwindSafe for QRDecomposition<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