2016-12-05 05:44:42 +08:00
|
|
|
|
// Matrix properties checks.
|
2018-05-19 21:41:58 +08:00
|
|
|
|
use approx::RelativeEq;
|
2018-02-02 19:26:35 +08:00
|
|
|
|
use num::{One, Zero};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
|
use alga::general::{ClosedAdd, ClosedMul, Real};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
2018-05-19 21:41:58 +08:00
|
|
|
|
use core::allocator::Allocator;
|
2017-08-03 01:37:44 +08:00
|
|
|
|
use core::dimension::{Dim, DimMin};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
use core::storage::Storage;
|
2018-05-19 21:41:58 +08:00
|
|
|
|
use core::{DefaultAllocator, Matrix, Scalar, SquareMatrix};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
|
|
impl<N: Scalar, R: Dim, C: Dim, S: Storage<N, R, C>> Matrix<N, R, C, S> {
|
2017-08-03 01:37:44 +08:00
|
|
|
|
/// Indicates if this is a square matrix.
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
|
let (nrows, ncols) = self.shape();
|
|
|
|
|
nrows == 0 || ncols == 0
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-05 05:44:42 +08:00
|
|
|
|
/// Indicates if this is a square matrix.
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn is_square(&self) -> bool {
|
2017-08-03 01:37:44 +08:00
|
|
|
|
let (nrows, ncols) = self.shape();
|
|
|
|
|
nrows == ncols
|
2016-12-05 05:44:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-19 21:41:58 +08:00
|
|
|
|
// FIXME: RelativeEq prevents us from using those methods on integer matrices…
|
2016-12-05 05:44:42 +08:00
|
|
|
|
/// Indicated if this is the identity matrix within a relative error of `eps`.
|
|
|
|
|
///
|
|
|
|
|
/// If the matrix is diagonal, this checks that diagonal elements (i.e. at coordinates `(i, i)`
|
|
|
|
|
/// for i from `0` to `min(R, C)`) are equal one; and that all other elements are zero.
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn is_identity(&self, eps: N::Epsilon) -> bool
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
2018-05-19 21:41:58 +08:00
|
|
|
|
N: Zero + One + RelativeEq,
|
2018-02-02 19:26:35 +08:00
|
|
|
|
N::Epsilon: Copy,
|
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
|
let (nrows, ncols) = self.shape();
|
|
|
|
|
let d;
|
|
|
|
|
|
|
|
|
|
if nrows > ncols {
|
|
|
|
|
d = ncols;
|
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
|
for i in d..nrows {
|
|
|
|
|
for j in 0..ncols {
|
2016-12-05 05:44:42 +08:00
|
|
|
|
if !relative_eq!(self[(i, j)], N::zero(), epsilon = eps) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-02 19:26:35 +08:00
|
|
|
|
} else {
|
|
|
|
|
// nrows <= ncols
|
2016-12-05 05:44:42 +08:00
|
|
|
|
d = nrows;
|
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
|
for i in 0..nrows {
|
|
|
|
|
for j in d..ncols {
|
2016-12-05 05:44:42 +08:00
|
|
|
|
if !relative_eq!(self[(i, j)], N::zero(), epsilon = eps) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Off-diagonal elements of the sub-square matrix.
|
2018-02-02 19:26:35 +08:00
|
|
|
|
for i in 1..d {
|
|
|
|
|
for j in 0..i {
|
2016-12-05 05:44:42 +08:00
|
|
|
|
// FIXME: use unsafe indexing.
|
2018-02-02 19:26:35 +08:00
|
|
|
|
if !relative_eq!(self[(i, j)], N::zero(), epsilon = eps)
|
|
|
|
|
|| !relative_eq!(self[(j, i)], N::zero(), epsilon = eps)
|
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Diagonal elements of the sub-square matrix.
|
2018-02-02 19:26:35 +08:00
|
|
|
|
for i in 0..d {
|
2016-12-05 05:44:42 +08:00
|
|
|
|
if !relative_eq!(self[(i, i)], N::one(), epsilon = eps) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
true
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
|
/// Checks that `Mᵀ × M = Id`.
|
2016-12-05 05:44:42 +08:00
|
|
|
|
///
|
|
|
|
|
/// In this definition `Id` is approximately equal to the identity matrix with a relative error
|
|
|
|
|
/// equal to `eps`.
|
|
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
|
pub fn is_orthogonal(&self, eps: N::Epsilon) -> bool
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
2018-05-19 21:41:58 +08:00
|
|
|
|
N: Zero + One + ClosedAdd + ClosedMul + RelativeEq,
|
2018-02-02 19:26:35 +08:00
|
|
|
|
S: Storage<N, R, C>,
|
|
|
|
|
N::Epsilon: Copy,
|
|
|
|
|
DefaultAllocator: Allocator<N, C, C>,
|
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
|
(self.tr_mul(self)).is_identity(eps)
|
2016-12-05 05:44:42 +08:00
|
|
|
|
}
|
2017-08-03 01:37:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<N: Real, D: Dim, S: Storage<N, D, D>> SquareMatrix<N, D, S>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
|
|
|
|
DefaultAllocator: Allocator<N, D, D>,
|
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
|
/// Checks that this matrix is orthogonal and has a determinant equal to 1.
|
|
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
|
pub fn is_special_orthogonal(&self, eps: N) -> bool
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
|
|
|
|
D: DimMin<D, Output = D>,
|
|
|
|
|
DefaultAllocator: Allocator<(usize, usize), D>,
|
|
|
|
|
{
|
|
|
|
|
self.is_square() && self.is_orthogonal(eps) && self.determinant() > N::zero()
|
2016-12-05 05:44:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Returns `true` if this matrix is invertible.
|
|
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
|
pub fn is_invertible(&self) -> bool {
|
2016-12-05 05:44:42 +08:00
|
|
|
|
// FIXME: improve this?
|
|
|
|
|
self.clone_owned().try_inverse().is_some()
|
|
|
|
|
}
|
|
|
|
|
}
|