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
|
|
|
|
2019-03-03 02:33:49 +08:00
|
|
|
use alga::general::{Field, Complex};
|
2017-08-03 01:37:44 +08:00
|
|
|
use allocator::{Allocator, Reallocator};
|
2018-05-19 23:15:15 +08:00
|
|
|
use base::{DefaultAllocator, Matrix, MatrixMN, MatrixN, Scalar};
|
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 std::mem;
|
|
|
|
use storage::{Storage, StorageMut};
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
use linalg::PermutationSequence;
|
|
|
|
|
|
|
|
/// LU decomposition with partial (row) pivoting.
|
2017-08-14 01:53:04 +08:00
|
|
|
#[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)]
|
2019-03-03 02:33:49 +08:00
|
|
|
pub struct LU<N: Complex, 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>>,
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
|
2019-03-03 02:33:49 +08:00
|
|
|
impl<N: Complex, R: DimMin<C>, C: Dim> Copy for LU<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
|
|
|
/// Performs a LU decomposition to overwrite `out` with the inverse of `matrix`.
|
|
|
|
///
|
|
|
|
/// If `matrix` is not invertible, `false` is returned and `out` may contain invalid data.
|
2019-03-03 02:33:49 +08:00
|
|
|
pub fn try_invert_to<N: Complex, D: Dim, S>(
|
2018-02-02 19:26:35 +08:00
|
|
|
mut matrix: MatrixN<N, D>,
|
|
|
|
out: &mut Matrix<N, D, D, S>,
|
|
|
|
) -> bool
|
|
|
|
where
|
|
|
|
S: StorageMut<N, D, D>,
|
|
|
|
DefaultAllocator: Allocator<N, D, D>,
|
|
|
|
{
|
|
|
|
assert!(
|
|
|
|
matrix.is_square(),
|
|
|
|
"LU inversion: unable to invert a rectangular matrix."
|
|
|
|
);
|
2017-08-03 01:37:44 +08:00
|
|
|
let dim = matrix.nrows();
|
|
|
|
|
|
|
|
out.fill_with_identity();
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..dim {
|
2019-03-03 02:33:49 +08:00
|
|
|
let piv = matrix.slice_range(i.., i).icamax() + i;
|
2017-08-03 01:37:44 +08:00
|
|
|
let diag = matrix[(piv, i)];
|
|
|
|
|
|
|
|
if diag.is_zero() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if piv != i {
|
|
|
|
out.swap_rows(i, piv);
|
2018-02-02 19:26:35 +08:00
|
|
|
matrix.columns_range_mut(..i).swap_rows(i, piv);
|
2017-08-03 01:37:44 +08:00
|
|
|
gauss_step_swap(&mut matrix, diag, i, piv);
|
2018-02-02 19:26:35 +08:00
|
|
|
} else {
|
2017-08-03 01:37:44 +08:00
|
|
|
gauss_step(&mut matrix, diag, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-16 00:24:34 +08:00
|
|
|
let _ = matrix.solve_lower_triangular_with_diag_mut(out, N::one());
|
2017-08-03 01:37:44 +08:00
|
|
|
matrix.solve_upper_triangular_mut(out)
|
|
|
|
}
|
|
|
|
|
2019-03-03 02:33:49 +08:00
|
|
|
impl<N: Complex, R: DimMin<C>, C: Dim> LU<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-03 01:37:44 +08:00
|
|
|
/// Computes the LU decomposition with partial (row) pivoting of `matrix`.
|
|
|
|
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);
|
|
|
|
|
|
|
|
if min_nrows_ncols.value() == 0 {
|
|
|
|
return LU { lu: matrix, p: p };
|
|
|
|
}
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..min_nrows_ncols.value() {
|
2019-03-03 02:33:49 +08:00
|
|
|
let piv = matrix.slice_range(i.., i).icamax() + i;
|
2017-08-03 01:37:44 +08:00
|
|
|
let diag = matrix[(piv, i)];
|
|
|
|
|
|
|
|
if diag.is_zero() {
|
|
|
|
// No non-zero entries on this column.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if piv != i {
|
|
|
|
p.append_permutation(i, piv);
|
2018-02-02 19:26:35 +08:00
|
|
|
matrix.columns_range_mut(..i).swap_rows(i, piv);
|
2017-08-03 01:37:44 +08:00
|
|
|
gauss_step_swap(&mut matrix, diag, i, piv);
|
2018-02-02 19:26:35 +08:00
|
|
|
} else {
|
2017-08-03 01:37:44 +08:00
|
|
|
gauss_step(&mut matrix, diag, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LU { lu: matrix, p: p }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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 lower triangular matrix of this decomposition.
|
2018-02-02 19:26:35 +08:00
|
|
|
fn l_unpack_with_p(
|
|
|
|
self,
|
|
|
|
) -> (
|
|
|
|
MatrixMN<N, R, DimMinimum<R, C>>,
|
|
|
|
PermutationSequence<DimMinimum<R, C>>,
|
|
|
|
)
|
2018-10-22 13:00:10 +08:00
|
|
|
where DefaultAllocator: Reallocator<N, R, C, R, DimMinimum<R, C>> {
|
2017-08-03 01:37:44 +08:00
|
|
|
let (nrows, ncols) = self.lu.data.shape();
|
|
|
|
let mut m = self.lu.resize_generic(nrows, nrows.min(ncols), N::zero());
|
|
|
|
m.fill_upper_triangle(N::zero(), 1);
|
|
|
|
m.fill_diagonal(N::one());
|
|
|
|
(m, self.p)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The lower triangular matrix of this decomposition.
|
|
|
|
#[inline]
|
|
|
|
pub fn l_unpack(self) -> MatrixMN<N, R, DimMinimum<R, C>>
|
2018-10-22 13:00:10 +08:00
|
|
|
where DefaultAllocator: Reallocator<N, R, C, R, DimMinimum<R, C>> {
|
2017-08-03 01:37:44 +08:00
|
|
|
let (nrows, ncols) = self.lu.data.shape();
|
|
|
|
let mut m = self.lu.resize_generic(nrows, nrows.min(ncols), N::zero());
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2017-08-14 01:53:04 +08:00
|
|
|
/// The row permutations of this decomposition.
|
2017-08-03 01:37:44 +08:00
|
|
|
#[inline]
|
|
|
|
pub fn p(&self) -> &PermutationSequence<DimMinimum<R, C>> {
|
|
|
|
&self.p
|
|
|
|
}
|
|
|
|
|
2017-08-14 01:53:04 +08:00
|
|
|
/// The row permutations and two triangular matrices of this decomposition: `(P, L, U)`.
|
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>,
|
|
|
|
)
|
2018-10-22 13:00:10 +08:00
|
|
|
where DefaultAllocator: Allocator<N, R, DimMinimum<R, C>>
|
2018-02-02 19:26:35 +08:00
|
|
|
+ Allocator<N, DimMinimum<R, C>, C>
|
2018-10-22 13:00:10 +08:00
|
|
|
+ Reallocator<N, R, C, R, DimMinimum<R, C>> {
|
2017-08-03 01:37:44 +08:00
|
|
|
// Use reallocation for either l or u.
|
|
|
|
let u = self.u();
|
|
|
|
let (l, p) = self.l_unpack_with_p();
|
|
|
|
|
|
|
|
(p, l, u)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-03 02:33:49 +08:00
|
|
|
impl<N: Complex, D: DimMin<D, Output = D>> LU<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.
|
|
|
|
///
|
|
|
|
/// Returns `None` if `self` 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: Storage<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(),
|
|
|
|
"LU solve matrix dimension mismatch."
|
|
|
|
);
|
|
|
|
assert!(
|
|
|
|
self.lu.is_square(),
|
|
|
|
"LU solve: unable to solve a non-square system."
|
|
|
|
);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
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());
|
2017-08-03 01:37:44 +08:00
|
|
|
self.lu.solve_upper_triangular_mut(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Computes the inverse of the decomposed matrix.
|
|
|
|
///
|
2017-08-14 01:53:04 +08:00
|
|
|
/// Returns `None` if the matrix is not invertible.
|
2017-08-03 01:37:44 +08:00
|
|
|
pub fn try_inverse(&self) -> Option<MatrixN<N, D>> {
|
2018-02-02 19:26:35 +08:00
|
|
|
assert!(
|
|
|
|
self.lu.is_square(),
|
|
|
|
"LU 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.try_inverse_to(&mut res) {
|
|
|
|
Some(res)
|
2018-02-02 19:26:35 +08:00
|
|
|
} else {
|
2017-08-03 01:37:44 +08:00
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Computes the inverse of the decomposed matrix and outputs the result to `out`.
|
|
|
|
///
|
2017-08-14 01:53:04 +08:00
|
|
|
/// If the decomposed matrix is not invertible, this returns `false` and `out` may be
|
|
|
|
/// overwritten with garbage.
|
2017-08-03 01:37:44 +08:00
|
|
|
pub fn try_inverse_to<S2: StorageMut<N, D, D>>(&self, out: &mut Matrix<N, D, D, S2>) -> bool {
|
2018-02-02 19:26:35 +08:00
|
|
|
assert!(
|
|
|
|
self.lu.is_square(),
|
|
|
|
"LU inverse: unable to compute the inverse of a non-square matrix."
|
|
|
|
);
|
|
|
|
assert!(
|
|
|
|
self.lu.shape() == out.shape(),
|
|
|
|
"LU inverse: mismatched output shape."
|
|
|
|
);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
out.fill_with_identity();
|
|
|
|
self.solve_mut(out)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Computes the determinant of the decomposed matrix.
|
|
|
|
pub fn determinant(&self) -> N {
|
|
|
|
let dim = self.lu.nrows();
|
2018-02-02 19:26:35 +08:00
|
|
|
assert!(
|
|
|
|
self.lu.is_square(),
|
|
|
|
"LU determinant: unable to compute the determinant of a non-square matrix."
|
|
|
|
);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
let mut res = N::one();
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..dim {
|
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()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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(),
|
|
|
|
"QR: unable to test the invertibility of a non-square matrix."
|
|
|
|
);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..self.lu.nrows() {
|
2017-08-03 01:37:44 +08:00
|
|
|
if self.lu[(i, i)].is_zero() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
/// Executes one step of gaussian elimination on the i-th row and column of `matrix`. The diagonal
|
|
|
|
/// element `matrix[(i, i)]` is provided as argument.
|
|
|
|
pub fn gauss_step<N, R: Dim, C: Dim, S>(matrix: &mut Matrix<N, R, C, S>, diag: N, i: usize)
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
N: Scalar + Field,
|
|
|
|
S: StorageMut<N, R, C>,
|
|
|
|
{
|
|
|
|
let mut submat = matrix.slice_range_mut(i.., i..);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
let inv_diag = N::one() / diag;
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
let (mut coeffs, mut submat) = submat.columns_range_pair_mut(0, 1..);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
let mut coeffs = coeffs.rows_range_mut(1..);
|
2017-08-03 01:37:44 +08:00
|
|
|
coeffs *= inv_diag;
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
let (pivot_row, mut down) = submat.rows_range_pair_mut(0, 1..);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for k in 0..pivot_row.ncols() {
|
2017-08-03 01:37:44 +08:00
|
|
|
down.column_mut(k).axpy(-pivot_row[k], &coeffs, N::one());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
/// Swaps the rows `i` with the row `piv` and executes one step of gaussian elimination on the i-th
|
|
|
|
/// row and column of `matrix`. The diagonal element `matrix[(i, i)]` is provided as argument.
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn gauss_step_swap<N, R: Dim, C: Dim, S>(
|
|
|
|
matrix: &mut Matrix<N, R, C, S>,
|
|
|
|
diag: N,
|
|
|
|
i: usize,
|
|
|
|
piv: usize,
|
|
|
|
) where
|
|
|
|
N: Scalar + Field,
|
|
|
|
S: StorageMut<N, R, C>,
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let piv = piv - i;
|
2018-02-02 19:26:35 +08:00
|
|
|
let mut submat = matrix.slice_range_mut(i.., i..);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
let inv_diag = N::one() / diag;
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
let (mut coeffs, mut submat) = submat.columns_range_pair_mut(0, 1..);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
coeffs.swap((0, 0), (piv, 0));
|
2018-02-02 19:26:35 +08:00
|
|
|
let mut coeffs = coeffs.rows_range_mut(1..);
|
2017-08-03 01:37:44 +08:00
|
|
|
coeffs *= inv_diag;
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
let (mut pivot_row, mut down) = submat.rows_range_pair_mut(0, 1..);
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for k in 0..pivot_row.ncols() {
|
2017-08-03 01:37:44 +08:00
|
|
|
mem::swap(&mut pivot_row[k], &mut down[(piv - 1, k)]);
|
|
|
|
down.column_mut(k).axpy(-pivot_row[k], &coeffs, N::one());
|
|
|
|
}
|
|
|
|
}
|
2017-08-14 01:52:46 +08:00
|
|
|
|
2019-03-03 02:33:49 +08:00
|
|
|
impl<N: Complex, 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:52:46 +08:00
|
|
|
/// Computes the LU decomposition with partial (row) pivoting of `matrix`.
|
|
|
|
pub fn lu(self) -> LU<N, R, C> {
|
|
|
|
LU::new(self.into_owned())
|
|
|
|
}
|
|
|
|
}
|