nalgebra/src/linalg/qr.rs

338 lines
10 KiB
Rust
Raw Normal View History

2021-07-17 17:36:14 +08:00
use std::fmt;
2020-03-21 19:16:46 +08:00
use num::Zero;
#[cfg(feature = "serde-serialize-no-std")]
2018-10-22 13:00:10 +08:00
use serde::{Deserialize, Serialize};
2019-03-23 21:29:07 +08:00
use crate::allocator::{Allocator, Reallocator};
2021-04-11 17:00:38 +08:00
use crate::base::{DefaultAllocator, Matrix, OMatrix, OVector, Unit};
2019-03-23 21:29:07 +08:00
use crate::constraint::{SameNumberOfRows, ShapeConstraint};
use crate::dimension::{Const, Dim, DimMin, DimMinimum};
2021-07-17 17:36:14 +08:00
use crate::storage::{Owned, Storage, StorageMut};
2020-03-21 19:16:46 +08:00
use simba::scalar::ComplexField;
2019-03-23 21:29:07 +08:00
use crate::geometry::Reflection;
use crate::linalg::householder;
/// The QR decomposition of a general matrix.
#[cfg_attr(feature = "serde-serialize-no-std", derive(Serialize, Deserialize))]
2018-10-22 13:00:10 +08:00
#[cfg_attr(
feature = "serde-serialize-no-std",
2021-04-11 17:00:38 +08:00
serde(bound(serialize = "DefaultAllocator: Allocator<T, R, C> +
Allocator<T, DimMinimum<R, C>>,
OMatrix<T, R, C>: Serialize,
OVector<T, DimMinimum<R, C>>: Serialize"))
2018-10-22 13:00:10 +08:00
)]
#[cfg_attr(
feature = "serde-serialize-no-std",
2021-04-11 17:00:38 +08:00
serde(bound(deserialize = "DefaultAllocator: Allocator<T, R, C> +
Allocator<T, DimMinimum<R, C>>,
OMatrix<T, R, C>: Deserialize<'de>,
OVector<T, DimMinimum<R, C>>: Deserialize<'de>"))
2018-10-22 13:00:10 +08:00
)]
2021-07-17 17:36:14 +08:00
pub struct QR<T, R: DimMin<C>, C: Dim>
2020-04-06 00:49:48 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, R, C> + Allocator<T, DimMinimum<R, C>>,
2018-02-02 19:26:35 +08:00
{
2021-04-11 17:00:38 +08:00
qr: OMatrix<T, R, C>,
diag: OVector<T, DimMinimum<R, C>>,
}
2021-07-17 17:36:14 +08:00
impl<T: Copy, R: DimMin<C>, C: Dim> Copy for QR<T, R, C>
where
DefaultAllocator: Allocator<T, R, C> + Allocator<T, DimMinimum<R, C>>,
Owned<T, R, C>: Copy,
Owned<T, DimMinimum<R, C>>: Copy,
{
}
impl<T: Clone, R: DimMin<C>, C: Dim> Clone for QR<T, R, C>
where
DefaultAllocator: Allocator<T, R, C> + Allocator<T, DimMinimum<R, C>>,
Owned<T, R, C>: Clone,
Owned<T, DimMinimum<R, C>>: Clone,
{
fn clone(&self) -> Self {
Self {
qr: self.qr.clone(),
diag: self.diag.clone(),
}
}
}
impl<T: fmt::Debug, R: DimMin<C>, C: Dim> fmt::Debug for QR<T, R, C>
2018-02-02 19:26:35 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, R, C> + Allocator<T, DimMinimum<R, C>>,
2021-07-17 17:36:14 +08:00
Owned<T, R, C>: fmt::Debug,
Owned<T, DimMinimum<R, C>>: fmt::Debug,
2020-03-21 19:16:46 +08:00
{
2021-07-17 17:36:14 +08:00
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("QR")
.field("qr", &self.qr)
.field("diag", &self.diag)
.finish()
}
2020-03-21 19:16:46 +08:00
}
2021-04-11 17:00:38 +08:00
impl<T: ComplexField, R: DimMin<C>, C: Dim> QR<T, R, C>
2020-04-06 00:49:48 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, R, C> + Allocator<T, R> + Allocator<T, DimMinimum<R, C>>,
2018-02-02 19:26:35 +08:00
{
/// Computes the QR decomposition using householder reflections.
2021-04-11 17:00:38 +08:00
pub fn new(mut matrix: OMatrix<T, R, C>) -> Self {
2018-02-02 19:26:35 +08:00
let (nrows, ncols) = matrix.data.shape();
let min_nrows_ncols = nrows.min(ncols);
2021-07-17 17:36:14 +08:00
let mut diag = Matrix::new_uninitialized_generic(min_nrows_ncols, Const::<1>);
if min_nrows_ncols.value() == 0 {
2021-07-17 17:36:14 +08:00
return Self {
qr: matrix,
diag: unsafe { diag.assume_init() },
};
}
2021-02-25 19:06:04 +08:00
for i in 0..min_nrows_ncols.value() {
// Safety: the pointer is valid for writes, aligned, and uninitialized.
unsafe {
householder::clear_column_unchecked(&mut matrix, diag[i].as_mut_ptr(), i, 0, None);
}
}
// Safety: all values have been initialized.
unsafe {
Self {
qr: matrix,
diag: diag.assume_init(),
}
2021-07-17 17:36:14 +08:00
}
}
/// Retrieves the upper trapezoidal submatrix `R` of this decomposition.
#[inline]
#[must_use]
2021-04-11 17:00:38 +08:00
pub fn r(&self) -> OMatrix<T, DimMinimum<R, C>, C>
2020-04-06 00:49:48 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, DimMinimum<R, C>, C>,
2020-04-06 00:49:48 +08:00
{
let (nrows, ncols) = self.qr.data.shape();
let mut res = self.qr.rows_generic(0, nrows.min(ncols)).upper_triangle();
2021-04-11 17:00:38 +08:00
res.set_partial_diagonal(self.diag.iter().map(|e| T::from_real(e.modulus())));
res
}
/// Retrieves the upper trapezoidal submatrix `R` of this decomposition.
///
/// This is usually faster than `r` but consumes `self`.
#[inline]
2021-04-11 17:00:38 +08:00
pub fn unpack_r(self) -> OMatrix<T, DimMinimum<R, C>, C>
2020-04-06 00:49:48 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Reallocator<T, R, C, DimMinimum<R, C>, C>,
2020-04-06 00:49:48 +08:00
{
let (nrows, ncols) = self.qr.data.shape();
2021-04-11 17:00:38 +08:00
let mut res = self.qr.resize_generic(nrows.min(ncols), ncols, T::zero());
res.fill_lower_triangle(T::zero(), 1);
res.set_partial_diagonal(self.diag.iter().map(|e| T::from_real(e.modulus())));
res
}
/// Computes the orthogonal matrix `Q` of this decomposition.
#[must_use]
2021-04-11 17:00:38 +08:00
pub fn q(&self) -> OMatrix<T, R, DimMinimum<R, C>>
2020-04-06 00:49:48 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, R, DimMinimum<R, C>>,
2020-04-06 00:49:48 +08:00
{
let (nrows, ncols) = self.qr.data.shape();
// NOTE: we could build the identity matrix and call q_mul on it.
2018-09-24 12:48:42 +08:00
// Instead we don't so that we take in account the matrix sparseness.
let mut res = Matrix::identity_generic(nrows, nrows.min(ncols));
let dim = self.diag.len();
2018-02-02 19:26:35 +08:00
for i in (0..dim).rev() {
let axis = self.qr.slice_range(i.., i);
2020-11-15 23:57:49 +08:00
// TODO: sometimes, the axis might have a zero magnitude.
2021-04-11 17:00:38 +08:00
let refl = Reflection::new(Unit::new_unchecked(axis), T::zero());
2018-02-02 19:26:35 +08:00
let mut res_rows = res.slice_range_mut(i.., i..);
2019-03-19 19:00:10 +08:00
refl.reflect_with_sign(&mut res_rows, self.diag[i].signum());
}
res
}
/// Unpacks this decomposition into its two matrix factors.
2018-02-02 19:26:35 +08:00
pub fn unpack(
self,
) -> (
2021-04-11 17:00:38 +08:00
OMatrix<T, R, DimMinimum<R, C>>,
OMatrix<T, DimMinimum<R, C>, C>,
2018-02-02 19:26:35 +08:00
)
where
DimMinimum<R, C>: DimMin<C, Output = DimMinimum<R, C>>,
2018-10-22 13:00:10 +08:00
DefaultAllocator:
2021-04-11 17:00:38 +08:00
Allocator<T, R, DimMinimum<R, C>> + Reallocator<T, R, C, DimMinimum<R, C>, C>,
2018-02-02 19:26:35 +08:00
{
(self.q(), self.unpack_r())
}
#[doc(hidden)]
2021-04-11 17:00:38 +08:00
pub fn qr_internal(&self) -> &OMatrix<T, R, C> {
&self.qr
}
/// Multiplies the provided matrix by the transpose of the `Q` matrix of this decomposition.
2021-04-11 17:00:38 +08:00
pub fn q_tr_mul<R2: Dim, C2: Dim, S2>(&self, rhs: &mut Matrix<T, R2, C2, S2>)
2020-11-15 23:57:49 +08:00
// TODO: do we need a static constraint on the number of rows of rhs?
2020-04-06 00:49:48 +08:00
where
2021-04-11 17:00:38 +08:00
S2: StorageMut<T, R2, C2>,
2020-04-06 00:49:48 +08:00
{
let dim = self.diag.len();
2018-02-02 19:26:35 +08:00
for i in 0..dim {
let axis = self.qr.slice_range(i.., i);
2021-04-11 17:00:38 +08:00
let refl = Reflection::new(Unit::new_unchecked(axis), T::zero());
2018-02-02 19:26:35 +08:00
let mut rhs_rows = rhs.rows_range_mut(i..);
2019-03-19 19:00:10 +08:00
refl.reflect_with_sign(&mut rhs_rows, self.diag[i].signum().conjugate());
}
}
}
2021-04-11 17:00:38 +08:00
impl<T: ComplexField, D: DimMin<D, Output = D>> QR<T, D, D>
2020-04-06 00:49:48 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, D, D> + Allocator<T, D>,
2018-02-02 19:26:35 +08:00
{
/// Solves the linear system `self * x = b`, where `x` is the unknown to be determined.
///
/// Returns `None` if `self` is not invertible.
2021-06-06 17:34:29 +08:00
#[must_use = "Did you mean to use solve_mut()?"]
2018-02-02 19:26:35 +08:00
pub fn solve<R2: Dim, C2: Dim, S2>(
&self,
2021-04-11 17:00:38 +08:00
b: &Matrix<T, R2, C2, S2>,
) -> Option<OMatrix<T, R2, C2>>
2018-02-02 19:26:35 +08:00
where
2021-04-11 17:00:38 +08:00
S2: Storage<T, R2, C2>,
2018-02-02 19:26:35 +08:00
ShapeConstraint: SameNumberOfRows<R2, D>,
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, R2, C2>,
2018-02-02 19:26:35 +08:00
{
let mut res = b.clone_owned();
if self.solve_mut(&mut res) {
Some(res)
2018-02-02 19:26:35 +08:00
} else {
None
}
}
/// Solves the linear system `self * x = b`, where `x` is the unknown to be determined.
///
/// If the decomposed matrix is not invertible, this returns `false` and its input `b` is
/// overwritten with garbage.
2021-04-11 17:00:38 +08:00
pub fn solve_mut<R2: Dim, C2: Dim, S2>(&self, b: &mut Matrix<T, R2, C2, S2>) -> bool
2018-02-02 19:26:35 +08:00
where
2021-04-11 17:00:38 +08:00
S2: StorageMut<T, R2, C2>,
2018-02-02 19:26:35 +08:00
ShapeConstraint: SameNumberOfRows<R2, D>,
{
assert_eq!(
self.qr.nrows(),
b.nrows(),
"QR solve matrix dimension mismatch."
);
assert!(
self.qr.is_square(),
"QR solve: unable to solve a non-square system."
);
self.q_tr_mul(b);
self.solve_upper_triangular_mut(b)
}
2020-11-15 23:57:49 +08:00
// TODO: duplicate code from the `solve` module.
2018-02-02 19:26:35 +08:00
fn solve_upper_triangular_mut<R2: Dim, C2: Dim, S2>(
&self,
2021-04-11 17:00:38 +08:00
b: &mut Matrix<T, R2, C2, S2>,
2018-02-02 19:26:35 +08:00
) -> bool
where
2021-04-11 17:00:38 +08:00
S2: StorageMut<T, R2, C2>,
2018-02-02 19:26:35 +08:00
ShapeConstraint: SameNumberOfRows<R2, D>,
{
let dim = self.qr.nrows();
for k in 0..b.ncols() {
let mut b = b.column_mut(k);
2018-02-02 19:26:35 +08:00
for i in (0..dim).rev() {
let coeff;
unsafe {
2019-03-19 19:00:10 +08:00
let diag = self.diag.vget_unchecked(i).modulus();
if diag.is_zero() {
return false;
}
2019-03-19 19:00:10 +08:00
coeff = b.vget_unchecked(i).unscale(diag);
*b.vget_unchecked_mut(i) = coeff;
}
2018-02-02 19:26:35 +08:00
b.rows_range_mut(..i)
2021-04-11 17:00:38 +08:00
.axpy(-coeff, &self.qr.slice_range(..i, i), T::one());
}
}
true
}
/// Computes the inverse of the decomposed matrix.
///
/// Returns `None` if the decomposed matrix is not invertible.
#[must_use]
2021-04-11 17:00:38 +08:00
pub fn try_inverse(&self) -> Option<OMatrix<T, D, D>> {
2018-02-02 19:26:35 +08:00
assert!(
self.qr.is_square(),
"QR inverse: unable to compute the inverse of a non-square matrix."
);
2020-11-15 23:57:49 +08:00
// TODO: is there a less naive method ?
let (nrows, ncols) = self.qr.data.shape();
2021-04-11 17:00:38 +08:00
let mut res = OMatrix::identity_generic(nrows, ncols);
if self.solve_mut(&mut res) {
Some(res)
2018-02-02 19:26:35 +08:00
} else {
None
}
}
/// Indicates if the decomposed matrix is invertible.
#[must_use]
pub fn is_invertible(&self) -> bool {
2018-02-02 19:26:35 +08:00
assert!(
self.qr.is_square(),
"QR: unable to test the invertibility of a non-square matrix."
);
2018-02-02 19:26:35 +08:00
for i in 0..self.diag.len() {
if self.diag[i].is_zero() {
return false;
}
}
true
}
// /// Computes the determinant of the decomposed matrix.
2021-04-11 17:00:38 +08:00
// pub fn determinant(&self) -> T {
// let dim = self.qr.nrows();
// assert!(self.qr.is_square(), "QR determinant: unable to compute the determinant of a non-square matrix.");
2021-04-11 17:00:38 +08:00
// let mut res = T::one();
// for i in 0 .. dim {
// res *= unsafe { *self.diag.vget_unchecked(i) };
// }
// res self.q_determinant()
// }
}