Expand description
The result of computing a thin (or reduced) QR decomposition.
Let A
denote the m x n
matrix given by A = QR
.
Then Q
is an m x m
orthogonal matrix, and R
is an m x n
upper trapezoidal matrix.
If m > n
, we may write
A = QR = [ Q1 Q2 ] [ R1 ] = Q1 R1
[ 0 ]
where Q1
is an m x n
matrix with orthogonal columns,
and R1
is an n x n
upper triangular matrix.
For some applications, the remaining (m - n) columns
of the full Q
matrix are not needed, in which case
the thin QR decomposition is substantially cheaper if
m >> n
.
If m <= n
, then the thin QR decomposition coincides with
the usual decomposition. See QR for details.
To actually compute the QR decomposition, see Householder QR.
Fields
q1: Matrix<T>
The matrix Q1
in the decomposition A = Q1 R1
.
r1: Matrix<T>
The upper-triangular matrix R1
in the decomposition A = Q1 R1
.
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for ThinQR<T>where
T: RefUnwindSafe,
impl<T> Send for ThinQR<T>where
T: Send,
impl<T> Sync for ThinQR<T>where
T: Sync,
impl<T> Unpin for ThinQR<T>where
T: Unpin,
impl<T> UnwindSafe for ThinQR<T>where
T: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more