2017-08-14 01:53:04 +08:00
|
|
|
#[cfg(feature = "serde-serialize")]
|
2018-10-22 13:00:10 +08:00
|
|
|
use serde::{Deserialize, Serialize};
|
2017-08-14 01:53:04 +08:00
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
use alga::general::Real;
|
|
|
|
use allocator::Allocator;
|
2018-05-19 23:15:15 +08:00
|
|
|
use base::{DefaultAllocator, Matrix, MatrixMN, MatrixN};
|
2018-02-02 19:26:35 +08:00
|
|
|
use constraint::{SameNumberOfRows, ShapeConstraint};
|
2018-05-19 23:15:15 +08:00
|
|
|
use dimension::{Dim, DimMin, DimMinimum};
|
|
|
|
use storage::{Storage, StorageMut};
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
use linalg::lu;
|
|
|
|
use linalg::PermutationSequence;
|
|
|
|
|
2017-08-14 01:53:04 +08:00
|
|
|
/// LU decomposition with full row and column pivoting.
|
|
|
|
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
|
2018-05-19 23:15:15 +08:00
|
|
|
#[cfg_attr(
|
|
|
|
feature = "serde-serialize",
|
2018-10-22 13:00:10 +08:00
|
|
|
serde(bound(
|
|
|
|
serialize = "DefaultAllocator: Allocator<N, R, C> +
|
2017-08-14 01:53:04 +08:00
|
|
|
Allocator<(usize, usize), DimMinimum<R, C>>,
|
2018-09-13 12:55:58 +08:00
|
|
|
MatrixMN<N, R, C>: Serialize,
|
|
|
|
PermutationSequence<DimMinimum<R, C>>: Serialize"
|
2018-10-22 13:00:10 +08:00
|
|
|
))
|
2018-05-19 23:15:15 +08:00
|
|
|
)]
|
|
|
|
#[cfg_attr(
|
|
|
|
feature = "serde-serialize",
|
2018-10-22 13:00:10 +08:00
|
|
|
serde(bound(
|
|
|
|
deserialize = "DefaultAllocator: Allocator<N, R, C> +
|
2017-08-14 01:53:04 +08:00
|
|
|
Allocator<(usize, usize), DimMinimum<R, C>>,
|
2018-09-13 12:55:58 +08:00
|
|
|
MatrixMN<N, R, C>: Deserialize<'de>,
|
|
|
|
PermutationSequence<DimMinimum<R, C>>: Deserialize<'de>"
|
2018-10-22 13:00:10 +08:00
|
|
|
))
|
2018-05-19 23:15:15 +08:00
|
|
|
)]
|
2017-08-14 01:53:00 +08:00
|
|
|
#[derive(Clone, Debug)]
|
2017-08-03 01:37:44 +08:00
|
|
|
pub struct FullPivLU<N: Real, R: DimMin<C>, C: Dim>
|
2018-10-22 13:00:10 +08:00
|
|
|
where DefaultAllocator: Allocator<N, R, C> + Allocator<(usize, usize), DimMinimum<R, C>>
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
lu: MatrixMN<N, R, C>,
|
2018-02-02 19:26:35 +08:00
|
|
|
p: PermutationSequence<DimMinimum<R, C>>,
|
|
|
|
q: PermutationSequence<DimMinimum<R, C>>,
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
|
2017-08-14 01:53:00 +08:00
|
|
|
impl<N: Real, R: DimMin<C>, C: Dim> Copy for FullPivLU<N, R, C>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Allocator<N, R, C> + Allocator<(usize, usize), DimMinimum<R, C>>,
|
|
|
|
MatrixMN<N, R, C>: Copy,
|
|
|
|
PermutationSequence<DimMinimum<R, C>>: Copy,
|
2018-10-22 13:00:10 +08:00
|
|
|
{}
|
2017-08-14 01:53:00 +08:00
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N: Real, R: DimMin<C>, C: Dim> FullPivLU<N, R, C>
|
2018-10-22 13:00:10 +08:00
|
|
|
where DefaultAllocator: Allocator<N, R, C> + Allocator<(usize, usize), DimMinimum<R, C>>
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2017-08-14 01:53:04 +08:00
|
|
|
/// Computes the LU decomposition with full pivoting of `matrix`.
|
2017-08-14 01:52:46 +08:00
|
|
|
///
|
|
|
|
/// This effectively computes `P, L, U, Q` such that `P * matrix * Q = LU`.
|
2017-08-03 01:37:44 +08:00
|
|
|
pub fn new(mut matrix: MatrixMN<N, R, C>) -> Self {
|
2018-02-02 19:26:35 +08:00
|
|
|
let (nrows, ncols) = matrix.data.shape();
|
2017-08-03 01:37:44 +08:00
|
|
|
let min_nrows_ncols = nrows.min(ncols);
|
|
|
|
|
|
|
|
let mut p = PermutationSequence::identity_generic(min_nrows_ncols);
|
|
|
|
let mut q = PermutationSequence::identity_generic(min_nrows_ncols);
|
|
|
|
|
|
|
|
if min_nrows_ncols.value() == 0 {
|
2018-02-02 19:26:35 +08:00
|
|
|
return FullPivLU {
|
|
|
|
lu: matrix,
|
|
|
|
p: p,
|
|
|
|
q: q,
|
|
|
|
};
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..min_nrows_ncols.value() {
|
|
|
|
let piv = matrix.slice_range(i.., i..).iamax_full();
|
2017-08-03 01:37:44 +08:00
|
|
|
let row_piv = piv.0 + i;
|
|
|
|
let col_piv = piv.1 + i;
|
|
|
|
let diag = matrix[(row_piv, col_piv)];
|
|
|
|
|
|
|
|
if diag.is_zero() {
|
|
|
|
// The remaining of the matrix is zero.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
matrix.swap_columns(i, col_piv);
|
|
|
|
q.append_permutation(i, col_piv);
|
|
|
|
|
|
|
|
if row_piv != i {
|
|
|
|
p.append_permutation(i, row_piv);
|
2018-02-02 19:26:35 +08:00
|
|
|
matrix.columns_range_mut(..i).swap_rows(i, row_piv);
|
2017-08-03 01:37:44 +08:00
|
|
|
lu::gauss_step_swap(&mut matrix, diag, i, row_piv);
|
2018-02-02 19:26:35 +08:00
|
|
|
} else {
|
2017-08-03 01:37:44 +08:00
|
|
|
lu::gauss_step(&mut matrix, diag, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
FullPivLU {
|
|
|
|
lu: matrix,
|
|
|
|
p: p,
|
|
|
|
q: q,
|
|
|
|
}
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn lu_internal(&self) -> &MatrixMN<N, R, C> {
|
|
|
|
&self.lu
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The lower triangular matrix of this decomposition.
|
|
|
|
#[inline]
|
|
|
|
pub fn l(&self) -> MatrixMN<N, R, DimMinimum<R, C>>
|
2018-10-22 13:00:10 +08:00
|
|
|
where DefaultAllocator: Allocator<N, R, DimMinimum<R, C>> {
|
2017-08-03 01:37:44 +08:00
|
|
|
let (nrows, ncols) = self.lu.data.shape();
|
|
|
|
let mut m = self.lu.columns_generic(0, nrows.min(ncols)).into_owned();
|
|
|
|
m.fill_upper_triangle(N::zero(), 1);
|
|
|
|
m.fill_diagonal(N::one());
|
|
|
|
m
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The upper triangular matrix of this decomposition.
|
|
|
|
#[inline]
|
|
|
|
pub fn u(&self) -> MatrixMN<N, DimMinimum<R, C>, C>
|
2018-10-22 13:00:10 +08:00
|
|
|
where DefaultAllocator: Allocator<N, DimMinimum<R, C>, C> {
|
2017-08-03 01:37:44 +08:00
|
|
|
let (nrows, ncols) = self.lu.data.shape();
|
|
|
|
self.lu.rows_generic(0, nrows.min(ncols)).upper_triangle()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The row permutations of this decomposition.
|
|
|
|
#[inline]
|
|
|
|
pub fn p(&self) -> &PermutationSequence<DimMinimum<R, C>> {
|
|
|
|
&self.p
|
|
|
|
}
|
|
|
|
|
2017-08-14 01:53:04 +08:00
|
|
|
/// The column permutations of this decomposition.
|
2017-08-03 01:37:44 +08:00
|
|
|
#[inline]
|
|
|
|
pub fn q(&self) -> &PermutationSequence<DimMinimum<R, C>> {
|
|
|
|
&self.q
|
|
|
|
}
|
|
|
|
|
2017-08-14 01:53:04 +08:00
|
|
|
/// The two matrices of this decomposition and the row and column permutations: `(P, L, U, Q)`.
|
2017-08-03 01:37:44 +08:00
|
|
|
#[inline]
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn unpack(
|
|
|
|
self,
|
|
|
|
) -> (
|
|
|
|
PermutationSequence<DimMinimum<R, C>>,
|
|
|
|
MatrixMN<N, R, DimMinimum<R, C>>,
|
|
|
|
MatrixMN<N, DimMinimum<R, C>, C>,
|
|
|
|
PermutationSequence<DimMinimum<R, C>>,
|
|
|
|
)
|
2018-10-22 13:00:10 +08:00
|
|
|
where DefaultAllocator: Allocator<N, R, DimMinimum<R, C>> + Allocator<N, DimMinimum<R, C>, C>
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
// Use reallocation for either l or u.
|
|
|
|
let l = self.l();
|
|
|
|
let u = self.u();
|
|
|
|
let p = self.p;
|
|
|
|
let q = self.q;
|
|
|
|
|
|
|
|
(p, l, u, q)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N: Real, D: DimMin<D, Output = D>> FullPivLU<N, D, D>
|
2018-10-22 13:00:10 +08:00
|
|
|
where DefaultAllocator: Allocator<N, D, D> + Allocator<(usize, usize), D>
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
/// Solves the linear system `self * x = b`, where `x` is the unknown to be determined.
|
|
|
|
///
|
2018-09-24 12:48:42 +08:00
|
|
|
/// Returns `None` if the decomposed matrix is not invertible.
|
2018-02-02 19:26:35 +08:00
|
|
|
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>,
|
|
|
|
{
|
2017-08-03 01:37:44 +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 {
|
2017-08-03 01:37:44 +08:00
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Solves the linear system `self * x = b`, where `x` is the unknown to be determined.
|
|
|
|
///
|
2017-08-14 01:53:04 +08:00
|
|
|
/// If the decomposed matrix is not invertible, this returns `false` and its input `b` may
|
|
|
|
/// be overwritten with garbage.
|
2017-08-03 01:37:44 +08:00
|
|
|
pub fn solve_mut<R2: Dim, C2: Dim, S2>(&self, b: &mut Matrix<N, R2, C2, S2>) -> bool
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
|
|
|
assert_eq!(
|
|
|
|
self.lu.nrows(),
|
|
|
|
b.nrows(),
|
|
|
|
"FullPivLU solve matrix dimension mismatch."
|
|
|
|
);
|
|
|
|
assert!(
|
|
|
|
self.lu.is_square(),
|
|
|
|
"FullPivLU solve: unable to solve a non-square system."
|
|
|
|
);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
if self.is_invertible() {
|
|
|
|
self.p.permute_rows(b);
|
2017-08-16 00:24:34 +08:00
|
|
|
let _ = self.lu.solve_lower_triangular_with_diag_mut(b, N::one());
|
|
|
|
let _ = self.lu.solve_upper_triangular_mut(b);
|
2017-08-03 01:37:44 +08:00
|
|
|
self.q.inv_permute_rows(b);
|
|
|
|
|
|
|
|
true
|
2018-02-02 19:26:35 +08:00
|
|
|
} else {
|
2017-08-03 01:37:44 +08:00
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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>> {
|
2018-02-02 19:26:35 +08:00
|
|
|
assert!(
|
|
|
|
self.lu.is_square(),
|
|
|
|
"FullPivLU inverse: unable to compute the inverse of a non-square matrix."
|
|
|
|
);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
let (nrows, ncols) = self.lu.data.shape();
|
|
|
|
|
|
|
|
let mut res = MatrixN::identity_generic(nrows, ncols);
|
|
|
|
if self.solve_mut(&mut res) {
|
|
|
|
Some(res)
|
2018-02-02 19:26:35 +08:00
|
|
|
} else {
|
2017-08-03 01:37:44 +08:00
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Indicates if the decomposed matrix is invertible.
|
|
|
|
pub fn is_invertible(&self) -> bool {
|
2018-02-02 19:26:35 +08:00
|
|
|
assert!(
|
|
|
|
self.lu.is_square(),
|
|
|
|
"FullPivLU: unable to test the invertibility of a non-square matrix."
|
|
|
|
);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
let dim = self.lu.nrows();
|
|
|
|
!self.lu[(dim - 1, dim - 1)].is_zero()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Computes the determinant of the decomposed matrix.
|
|
|
|
pub fn determinant(&self) -> N {
|
2018-02-02 19:26:35 +08:00
|
|
|
assert!(
|
|
|
|
self.lu.is_square(),
|
|
|
|
"FullPivLU determinant: unable to compute the determinant of a non-square matrix."
|
|
|
|
);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
let dim = self.lu.nrows();
|
|
|
|
let mut res = self.lu[(dim - 1, dim - 1)];
|
|
|
|
if !res.is_zero() {
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..dim - 1 {
|
2018-12-03 04:00:08 +08:00
|
|
|
res *= unsafe { *self.lu.get_unchecked((i, i)) };
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
res * self.p.determinant() * self.q.determinant()
|
2018-02-02 19:26:35 +08:00
|
|
|
} else {
|
2017-08-03 01:37:44 +08:00
|
|
|
N::zero()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-14 01:52:46 +08:00
|
|
|
|
|
|
|
impl<N: Real, R: DimMin<C>, C: Dim, S: Storage<N, R, C>> Matrix<N, R, C, S>
|
2018-10-22 13:00:10 +08:00
|
|
|
where DefaultAllocator: Allocator<N, R, C> + Allocator<(usize, usize), DimMinimum<R, C>>
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2017-08-14 01:53:04 +08:00
|
|
|
/// Computes the LU decomposition with full pivoting of `matrix`.
|
2017-08-14 01:52:46 +08:00
|
|
|
///
|
|
|
|
/// This effectively computes `P, L, U, Q` such that `P * matrix * Q = LU`.
|
|
|
|
pub fn full_piv_lu(self) -> FullPivLU<N, R, C> {
|
|
|
|
FullPivLU::new(self.into_owned())
|
|
|
|
}
|
|
|
|
}
|