nalgebra/src/linalg/col_piv_qr.rs

336 lines
11 KiB
Rust
Raw Normal View History

2021-02-25 19:06:04 +08:00
use num::Zero;
#[cfg(feature = "serde-serialize-no-std")]
2019-06-24 10:26:35 +08:00
use serde::{Deserialize, Serialize};
use crate::allocator::{Allocator, Reallocator};
2021-04-11 17:00:38 +08:00
use crate::base::{Const, DefaultAllocator, Matrix, OMatrix, OVector, Unit};
2019-06-24 10:26:35 +08:00
use crate::constraint::{SameNumberOfRows, ShapeConstraint};
2021-04-06 16:53:11 +08:00
use crate::dimension::{Dim, DimMin, DimMinimum};
2019-06-24 10:26:35 +08:00
use crate::storage::{Storage, StorageMut};
2021-02-25 19:06:04 +08:00
use crate::ComplexField;
2019-06-24 10:26:35 +08:00
use crate::geometry::Reflection;
2021-02-25 19:06:04 +08:00
use crate::linalg::{householder, PermutationSequence};
2019-06-24 10:26:35 +08:00
2021-02-25 19:06:04 +08:00
/// The QR decomposition (with column pivoting) of a general matrix.
#[cfg_attr(feature = "serde-serialize-no-std", derive(Serialize, Deserialize))]
2019-06-24 10:26:35 +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,
2019-06-24 10:26:35 +08:00
PermutationSequence<DimMinimum<R, C>>: Serialize,
2021-04-11 17:00:38 +08:00
OVector<T, DimMinimum<R, C>>: Serialize"))
2019-06-24 10:26:35 +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>,
2019-06-24 10:26:35 +08:00
PermutationSequence<DimMinimum<R, C>>: Deserialize<'de>,
2021-04-11 17:00:38 +08:00
OVector<T, DimMinimum<R, C>>: Deserialize<'de>"))
2019-06-24 10:26:35 +08:00
)]
#[derive(Clone, Debug)]
2021-04-11 17:00:38 +08:00
pub struct ColPivQR<T: ComplexField, R: DimMin<C>, C: Dim>
2021-02-25 19:06:04 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, R, C>
+ Allocator<T, DimMinimum<R, C>>
2021-02-25 19:06:04 +08:00
+ Allocator<(usize, usize), DimMinimum<R, C>>,
2019-06-24 10:26:35 +08:00
{
2021-04-11 17:00:38 +08:00
col_piv_qr: OMatrix<T, R, C>,
2019-06-24 10:26:35 +08:00
p: PermutationSequence<DimMinimum<R, C>>,
2021-04-11 17:00:38 +08:00
diag: OVector<T, DimMinimum<R, C>>,
2019-06-24 10:26:35 +08:00
}
2021-04-11 17:00:38 +08:00
impl<T: ComplexField, R: DimMin<C>, C: Dim> Copy for ColPivQR<T, R, C>
2019-06-24 10:26:35 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, R, C>
+ Allocator<T, DimMinimum<R, C>>
2021-02-25 19:06:04 +08:00
+ Allocator<(usize, usize), DimMinimum<R, C>>,
2021-04-11 17:00:38 +08:00
OMatrix<T, R, C>: Copy,
2019-06-24 10:26:35 +08:00
PermutationSequence<DimMinimum<R, C>>: Copy,
2021-04-11 17:00:38 +08:00
OVector<T, DimMinimum<R, C>>: Copy,
2021-02-25 19:06:04 +08:00
{
}
2019-06-24 10:26:35 +08:00
2021-04-11 17:00:38 +08:00
impl<T: ComplexField, R: DimMin<C>, C: Dim> ColPivQR<T, R, C>
2021-02-25 19:06:04 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, R, C>
+ Allocator<T, R>
+ Allocator<T, DimMinimum<R, C>>
2021-02-25 19:06:04 +08:00
+ Allocator<(usize, usize), DimMinimum<R, C>>,
2019-06-24 10:26:35 +08:00
{
2021-02-25 19:06:04 +08:00
/// Computes the ColPivQR decomposition using householder reflections.
2021-04-11 17:00:38 +08:00
pub fn new(mut matrix: OMatrix<T, R, C>) -> Self {
2019-06-24 10:26:35 +08:00
let (nrows, ncols) = matrix.data.shape();
let min_nrows_ncols = nrows.min(ncols);
let mut p = PermutationSequence::identity_generic(min_nrows_ncols);
2021-02-25 22:51:13 +08:00
let mut diag =
2021-04-06 16:53:11 +08:00
unsafe { crate::unimplemented_or_uninitialized_generic!(min_nrows_ncols, Const::<1>) };
2019-06-24 10:26:35 +08:00
if min_nrows_ncols.value() == 0 {
2021-02-25 19:06:04 +08:00
return ColPivQR {
col_piv_qr: matrix,
p,
diag,
2019-06-24 10:26:35 +08:00
};
}
2021-02-25 19:06:04 +08:00
for i in 0..min_nrows_ncols.value() {
let piv = matrix.slice_range(i.., i..).icamax_full();
let col_piv = piv.1 + i;
matrix.swap_columns(i, col_piv);
p.append_permutation(i, col_piv);
householder::clear_column_unchecked(&mut matrix, &mut diag[i], i, 0, None);
2019-06-24 10:26:35 +08:00
}
2021-02-25 19:06:04 +08:00
ColPivQR {
col_piv_qr: matrix,
p,
diag,
2019-06-24 10:26:35 +08:00
}
}
/// Retrieves the upper trapezoidal submatrix `R` of this decomposition.
#[inline]
2021-04-11 17:00:38 +08:00
pub fn r(&self) -> OMatrix<T, DimMinimum<R, C>, C>
2019-06-24 10:26:35 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, DimMinimum<R, C>, C>,
2019-06-24 10:26:35 +08:00
{
2021-02-25 19:06:04 +08:00
let (nrows, ncols) = self.col_piv_qr.data.shape();
let mut res = self
.col_piv_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())));
2019-06-24 10:26:35 +08:00
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>
2019-06-24 10:26:35 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Reallocator<T, R, C, DimMinimum<R, C>, C>,
2019-06-24 10:26:35 +08:00
{
2021-02-25 19:06:04 +08:00
let (nrows, ncols) = self.col_piv_qr.data.shape();
let mut res = self
.col_piv_qr
2021-04-11 17:00:38 +08:00
.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())));
2019-06-24 10:26:35 +08:00
res
}
/// Computes the orthogonal matrix `Q` of this decomposition.
2021-04-11 17:00:38 +08:00
pub fn q(&self) -> OMatrix<T, R, DimMinimum<R, C>>
2021-02-25 19:06:04 +08:00
where
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, R, DimMinimum<R, C>>,
2021-02-25 19:06:04 +08:00
{
let (nrows, ncols) = self.col_piv_qr.data.shape();
2019-06-24 10:26:35 +08:00
// NOTE: we could build the identity matrix and call q_mul on it.
// 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();
for i in (0..dim).rev() {
2021-02-25 19:06:04 +08:00
let axis = self.col_piv_qr.slice_range(i.., i);
// 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());
2019-06-24 10:26:35 +08:00
let mut res_rows = res.slice_range_mut(i.., i..);
refl.reflect_with_sign(&mut res_rows, self.diag[i].signum());
}
res
}
/// Retrieves the column permutation of this decomposition.
2019-06-24 10:26:35 +08:00
#[inline]
pub fn p(&self) -> &PermutationSequence<DimMinimum<R, C>> {
&self.p
}
/// Unpacks this decomposition into its two matrix factors.
pub fn unpack(
self,
) -> (
2021-04-11 17:00:38 +08:00
OMatrix<T, R, DimMinimum<R, C>>,
OMatrix<T, DimMinimum<R, C>, C>,
PermutationSequence<DimMinimum<R, C>>,
2019-06-24 10:26:35 +08:00
)
where
DimMinimum<R, C>: DimMin<C, Output = DimMinimum<R, C>>,
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, R, DimMinimum<R, C>>
+ Reallocator<T, R, C, DimMinimum<R, C>, C>
2021-02-25 19:06:04 +08:00
+ Allocator<(usize, usize), DimMinimum<R, C>>,
2019-06-24 10:26:35 +08:00
{
(self.q(), self.r(), self.p)
2019-06-24 10:26:35 +08:00
}
#[doc(hidden)]
2021-04-11 17:00:38 +08:00
pub fn col_piv_qr_internal(&self) -> &OMatrix<T, R, C> {
2021-02-25 19:06:04 +08:00
&self.col_piv_qr
2019-06-24 10:26:35 +08:00
}
/// 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>)
2021-02-25 19:06:04 +08:00
where
2021-04-11 17:00:38 +08:00
S2: StorageMut<T, R2, C2>,
2021-02-25 19:06:04 +08:00
{
2019-06-24 10:26:35 +08:00
let dim = self.diag.len();
for i in 0..dim {
2021-02-25 19:06:04 +08:00
let axis = self.col_piv_qr.slice_range(i.., i);
2021-04-11 17:00:38 +08:00
let refl = Reflection::new(Unit::new_unchecked(axis), T::zero());
2019-06-24 10:26:35 +08:00
let mut rhs_rows = rhs.rows_range_mut(i..);
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>> ColPivQR<T, D, D>
2021-02-25 19:06:04 +08:00
where
DefaultAllocator:
2021-04-11 17:00:38 +08:00
Allocator<T, D, D> + Allocator<T, D> + Allocator<(usize, usize), DimMinimum<D, D>>,
2019-06-24 10: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.
#[must_use = "Did you mean to use solve_mut()?"]
2019-06-24 10: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>>
2019-06-24 10:26:35 +08:00
where
2021-04-11 17:00:38 +08:00
S2: StorageMut<T, R2, C2>,
2019-06-24 10:26:35 +08:00
ShapeConstraint: SameNumberOfRows<R2, D>,
2021-04-11 17:00:38 +08:00
DefaultAllocator: Allocator<T, R2, C2>,
2019-06-24 10:26:35 +08:00
{
let mut res = b.clone_owned();
if self.solve_mut(&mut res) {
Some(res)
} 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
2019-06-24 10:26:35 +08:00
where
2021-04-11 17:00:38 +08:00
S2: StorageMut<T, R2, C2>,
2019-06-24 10:26:35 +08:00
ShapeConstraint: SameNumberOfRows<R2, D>,
{
assert_eq!(
2021-02-25 19:06:04 +08:00
self.col_piv_qr.nrows(),
2019-06-24 10:26:35 +08:00
b.nrows(),
2021-02-25 19:06:04 +08:00
"ColPivQR solve matrix dimension mismatch."
2019-06-24 10:26:35 +08:00
);
assert!(
2021-02-25 19:06:04 +08:00
self.col_piv_qr.is_square(),
"ColPivQR solve: unable to solve a non-square system."
2019-06-24 10:26:35 +08:00
);
self.q_tr_mul(b);
2021-02-25 19:06:04 +08:00
let solved = self.solve_upper_triangular_mut(b);
self.p.inv_permute_rows(b);
solved
2019-06-24 10:26:35 +08:00
}
2021-02-25 19:06:04 +08:00
// TODO: duplicate code from the `solve` module.
2019-06-24 10: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>,
2019-06-24 10:26:35 +08:00
) -> bool
where
2021-04-11 17:00:38 +08:00
S2: StorageMut<T, R2, C2>,
2019-06-24 10:26:35 +08:00
ShapeConstraint: SameNumberOfRows<R2, D>,
{
2021-02-25 19:06:04 +08:00
let dim = self.col_piv_qr.nrows();
2019-06-24 10:26:35 +08:00
for k in 0..b.ncols() {
let mut b = b.column_mut(k);
for i in (0..dim).rev() {
let coeff;
unsafe {
let diag = self.diag.vget_unchecked(i).modulus();
if diag.is_zero() {
return false;
}
coeff = b.vget_unchecked(i).unscale(diag);
*b.vget_unchecked_mut(i) = coeff;
}
b.rows_range_mut(..i)
2021-04-11 17:00:38 +08:00
.axpy(-coeff, &self.col_piv_qr.slice_range(..i, i), T::one());
2019-06-24 10:26:35 +08:00
}
}
true
}
/// Computes the inverse of the decomposed matrix.
///
/// Returns `None` if the decomposed matrix is not invertible.
2021-04-11 17:00:38 +08:00
pub fn try_inverse(&self) -> Option<OMatrix<T, D, D>> {
2019-06-24 10:26:35 +08:00
assert!(
2021-02-25 19:06:04 +08:00
self.col_piv_qr.is_square(),
"ColPivQR inverse: unable to compute the inverse of a non-square matrix."
2019-06-24 10:26:35 +08:00
);
2021-02-25 19:06:04 +08:00
// TODO: is there a less naive method ?
let (nrows, ncols) = self.col_piv_qr.data.shape();
2021-04-11 17:00:38 +08:00
let mut res = OMatrix::identity_generic(nrows, ncols);
2019-06-24 10:26:35 +08:00
if self.solve_mut(&mut res) {
Some(res)
} else {
None
}
}
/// Indicates if the decomposed matrix is invertible.
pub fn is_invertible(&self) -> bool {
assert!(
2021-02-25 19:06:04 +08:00
self.col_piv_qr.is_square(),
"ColPivQR: unable to test the invertibility of a non-square matrix."
2019-06-24 10:26:35 +08:00
);
for i in 0..self.diag.len() {
if self.diag[i].is_zero() {
return false;
}
}
true
}
2021-02-25 19:06:04 +08:00
/// Computes the determinant of the decomposed matrix.
2021-04-11 17:00:38 +08:00
pub fn determinant(&self) -> T {
2021-02-25 19:06:04 +08:00
let dim = self.col_piv_qr.nrows();
assert!(
self.col_piv_qr.is_square(),
"ColPivQR determinant: unable to compute the determinant of a non-square matrix."
);
2019-06-24 10:26:35 +08:00
2021-04-11 17:00:38 +08:00
let mut res = T::one();
2021-02-25 19:06:04 +08:00
for i in 0..dim {
res *= unsafe { *self.diag.vget_unchecked(i) };
}
2019-06-24 10:26:35 +08:00
2021-02-25 19:06:04 +08:00
res * self.p.determinant()
}
2019-06-24 10:26:35 +08:00
}