2021-02-25 19:06:04 +08:00
|
|
|
use num::Zero;
|
2019-06-24 10:26:35 +08:00
|
|
|
#[cfg(feature = "serde-serialize")]
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
|
|
|
use crate::allocator::{Allocator, Reallocator};
|
|
|
|
use crate::base::{DefaultAllocator, Matrix, MatrixMN, MatrixN, Unit, VectorN};
|
|
|
|
use crate::constraint::{SameNumberOfRows, ShapeConstraint};
|
|
|
|
use crate::dimension::{Dim, DimMin, DimMinimum, U1};
|
|
|
|
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.
|
2019-06-24 10:26:35 +08:00
|
|
|
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
|
|
|
|
#[cfg_attr(
|
|
|
|
feature = "serde-serialize",
|
2021-02-25 19:06:04 +08:00
|
|
|
serde(bound(serialize = "DefaultAllocator: Allocator<N, R, C> +
|
2019-06-24 10:26:35 +08:00
|
|
|
Allocator<N, DimMinimum<R, C>>,
|
|
|
|
MatrixMN<N, R, C>: Serialize,
|
|
|
|
PermutationSequence<DimMinimum<R, C>>: Serialize,
|
2021-02-25 19:06:04 +08:00
|
|
|
VectorN<N, DimMinimum<R, C>>: Serialize"))
|
2019-06-24 10:26:35 +08:00
|
|
|
)]
|
|
|
|
#[cfg_attr(
|
|
|
|
feature = "serde-serialize",
|
2021-02-25 19:06:04 +08:00
|
|
|
serde(bound(deserialize = "DefaultAllocator: Allocator<N, R, C> +
|
2019-06-24 10:26:35 +08:00
|
|
|
Allocator<N, DimMinimum<R, C>>,
|
|
|
|
MatrixMN<N, R, C>: Deserialize<'de>,
|
|
|
|
PermutationSequence<DimMinimum<R, C>>: Deserialize<'de>,
|
2021-02-25 19:06:04 +08:00
|
|
|
VectorN<N, DimMinimum<R, C>>: Deserialize<'de>"))
|
2019-06-24 10:26:35 +08:00
|
|
|
)]
|
|
|
|
#[derive(Clone, Debug)]
|
2021-02-25 19:06:04 +08:00
|
|
|
pub struct ColPivQR<N: ComplexField, R: DimMin<C>, C: Dim>
|
|
|
|
where
|
|
|
|
DefaultAllocator: Allocator<N, R, C>
|
|
|
|
+ Allocator<N, DimMinimum<R, C>>
|
|
|
|
+ Allocator<(usize, usize), DimMinimum<R, C>>,
|
2019-06-24 10:26:35 +08:00
|
|
|
{
|
2021-02-25 19:06:04 +08:00
|
|
|
col_piv_qr: MatrixMN<N, R, C>,
|
2019-06-24 10:26:35 +08:00
|
|
|
p: PermutationSequence<DimMinimum<R, C>>,
|
|
|
|
diag: VectorN<N, DimMinimum<R, C>>,
|
|
|
|
}
|
|
|
|
|
2021-02-25 19:06:04 +08:00
|
|
|
impl<N: ComplexField, R: DimMin<C>, C: Dim> Copy for ColPivQR<N, R, C>
|
2019-06-24 10:26:35 +08:00
|
|
|
where
|
2021-02-25 19:06:04 +08:00
|
|
|
DefaultAllocator: Allocator<N, R, C>
|
|
|
|
+ Allocator<N, DimMinimum<R, C>>
|
|
|
|
+ Allocator<(usize, usize), DimMinimum<R, C>>,
|
2019-06-24 10:26:35 +08:00
|
|
|
MatrixMN<N, R, C>: Copy,
|
|
|
|
PermutationSequence<DimMinimum<R, C>>: Copy,
|
|
|
|
VectorN<N, DimMinimum<R, C>>: Copy,
|
2021-02-25 19:06:04 +08:00
|
|
|
{
|
|
|
|
}
|
2019-06-24 10:26:35 +08:00
|
|
|
|
2021-02-25 19:06:04 +08:00
|
|
|
impl<N: ComplexField, R: DimMin<C>, C: Dim> ColPivQR<N, R, C>
|
|
|
|
where
|
|
|
|
DefaultAllocator: Allocator<N, R, C>
|
|
|
|
+ Allocator<N, R>
|
|
|
|
+ Allocator<N, DimMinimum<R, C>>
|
|
|
|
+ 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.
|
2019-06-24 10:26:35 +08:00
|
|
|
pub fn new(mut matrix: MatrixMN<N, R, C>) -> Self {
|
|
|
|
let (nrows, ncols) = matrix.data.shape();
|
|
|
|
let min_nrows_ncols = nrows.min(ncols);
|
|
|
|
let mut p = PermutationSequence::identity_generic(min_nrows_ncols);
|
2019-06-24 14:50:14 +08:00
|
|
|
|
2021-02-25 22:51:13 +08:00
|
|
|
let mut diag =
|
|
|
|
unsafe { crate::unimplemented_or_uninitialized_generic!(min_nrows_ncols, U1) };
|
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]
|
|
|
|
pub fn r(&self) -> MatrixMN<N, DimMinimum<R, C>, C>
|
|
|
|
where
|
|
|
|
DefaultAllocator: Allocator<N, DimMinimum<R, C>, C>,
|
|
|
|
{
|
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();
|
2019-06-24 10:26:35 +08:00
|
|
|
res.set_partial_diagonal(self.diag.iter().map(|e| N::from_real(e.modulus())));
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieves the upper trapezoidal submatrix `R` of this decomposition.
|
|
|
|
///
|
|
|
|
/// This is usually faster than `r` but consumes `self`.
|
|
|
|
#[inline]
|
|
|
|
pub fn unpack_r(self) -> MatrixMN<N, DimMinimum<R, C>, C>
|
|
|
|
where
|
|
|
|
DefaultAllocator: Reallocator<N, R, C, DimMinimum<R, C>, C>,
|
|
|
|
{
|
2021-02-25 19:06:04 +08:00
|
|
|
let (nrows, ncols) = self.col_piv_qr.data.shape();
|
|
|
|
let mut res = self
|
|
|
|
.col_piv_qr
|
|
|
|
.resize_generic(nrows.min(ncols), ncols, N::zero());
|
2019-06-24 10:26:35 +08:00
|
|
|
res.fill_lower_triangle(N::zero(), 1);
|
|
|
|
res.set_partial_diagonal(self.diag.iter().map(|e| N::from_real(e.modulus())));
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Computes the orthogonal matrix `Q` of this decomposition.
|
|
|
|
pub fn q(&self) -> MatrixMN<N, R, DimMinimum<R, C>>
|
2021-02-25 19:06:04 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Allocator<N, R, DimMinimum<R, C>>,
|
|
|
|
{
|
|
|
|
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.
|
2019-06-24 10:26:35 +08:00
|
|
|
let refl = Reflection::new(Unit::new_unchecked(axis), N::zero());
|
|
|
|
|
|
|
|
let mut res_rows = res.slice_range_mut(i.., i..);
|
|
|
|
refl.reflect_with_sign(&mut res_rows, self.diag[i].signum());
|
|
|
|
}
|
|
|
|
|
|
|
|
res
|
|
|
|
}
|
2019-06-24 14:50:14 +08:00
|
|
|
/// 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,
|
|
|
|
) -> (
|
|
|
|
MatrixMN<N, R, DimMinimum<R, C>>,
|
|
|
|
MatrixMN<N, DimMinimum<R, C>, C>,
|
2019-06-24 14:50:14 +08:00
|
|
|
PermutationSequence<DimMinimum<R, C>>,
|
2019-06-24 10:26:35 +08:00
|
|
|
)
|
|
|
|
where
|
|
|
|
DimMinimum<R, C>: DimMin<C, Output = DimMinimum<R, C>>,
|
2021-02-25 19:06:04 +08:00
|
|
|
DefaultAllocator: Allocator<N, R, DimMinimum<R, C>>
|
|
|
|
+ Reallocator<N, R, C, DimMinimum<R, C>, C>
|
|
|
|
+ Allocator<(usize, usize), DimMinimum<R, C>>,
|
2019-06-24 10:26:35 +08:00
|
|
|
{
|
2019-06-24 14:50:14 +08:00
|
|
|
(self.q(), self.r(), self.p)
|
2019-06-24 10:26:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
2021-02-25 19:06:04 +08:00
|
|
|
pub fn col_piv_qr_internal(&self) -> &MatrixMN<N, R, C> {
|
|
|
|
&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.
|
|
|
|
pub fn q_tr_mul<R2: Dim, C2: Dim, S2>(&self, rhs: &mut Matrix<N, R2, C2, S2>)
|
2021-02-25 19:06:04 +08:00
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
{
|
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);
|
2019-06-24 10:26:35 +08:00
|
|
|
let refl = Reflection::new(Unit::new_unchecked(axis), N::zero());
|
|
|
|
|
|
|
|
let mut rhs_rows = rhs.rows_range_mut(i..);
|
|
|
|
refl.reflect_with_sign(&mut rhs_rows, self.diag[i].signum().conjugate());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-25 19:06:04 +08:00
|
|
|
impl<N: ComplexField, D: DimMin<D, Output = D>> ColPivQR<N, D, D>
|
|
|
|
where
|
|
|
|
DefaultAllocator:
|
|
|
|
Allocator<N, D, D> + Allocator<N, 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.
|
|
|
|
pub fn solve<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &Matrix<N, R2, C2, S2>,
|
|
|
|
) -> Option<MatrixMN<N, R2, C2>>
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
DefaultAllocator: Allocator<N, R2, C2>,
|
|
|
|
{
|
|
|
|
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.
|
|
|
|
pub fn solve_mut<R2: Dim, C2: Dim, S2>(&self, b: &mut Matrix<N, R2, C2, S2>) -> bool
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
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,
|
|
|
|
b: &mut Matrix<N, R2, C2, S2>,
|
|
|
|
) -> bool
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
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-02-25 19:06:04 +08:00
|
|
|
.axpy(-coeff, &self.col_piv_qr.slice_range(..i, i), N::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.
|
|
|
|
pub fn try_inverse(&self) -> Option<MatrixN<N, D>> {
|
|
|
|
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();
|
2019-06-24 10:26:35 +08:00
|
|
|
let mut res = MatrixN::identity_generic(nrows, ncols);
|
|
|
|
|
|
|
|
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.
|
|
|
|
pub fn determinant(&self) -> N {
|
|
|
|
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-02-25 19:06:04 +08:00
|
|
|
let mut res = N::one();
|
|
|
|
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
|
|
|
}
|