nalgebra-lapack 0.27.0

Matrix decompositions using nalgebra matrices and Lapack bindings.
Documentation
use na::{Dim, IsContiguous, Matrix, RawStorage, RealField, Scalar, Storage};
use num::ToPrimitive;
use num::{Float, float::TotalOrder};

#[cfg(test)]
mod test;

/// describes different algorithms of estimating a matrix rank from the upper
/// diagonal `R` matrix of a column-pivoted QR decomposition.
pub enum RankDeterminationAlgorithm<T: RealField> {
    /// This simplest (and cheapest) strategy is to estimate the rank of the
    /// matrix $$AP = QR$$ as the number of diagonal elements $$R_{ii}$$ greater
    /// than this fixed lower bound.
    ///
    /// **Note**: this is the fastest method, but
    /// should be used with extreme caution, because it can easily produce
    /// erroneous results even in trivial cases.
    FixedLowerBound(T::RealField),
    /// Calculate the rank of the matrix as the number of diagonal elements
    /// of `R` greater than `R_max * EPSILON * max(nrows,ncols)`, where `R_max`
    /// is the largest diagonal entry of `R` and `EPSILON` is the floating
    /// point accuracy.
    ///
    /// This is inspired by the logic of the GNU octave [`rank`](https://octave.sourceforge.io/octave/function/rank.html)
    /// function. However, that function uses the singular values rather than
    /// the diagonal elements of `R`.
    ScaledEps1,
    /// Calculate the rank of the matrix as the number of diagonal elements
    /// of `R` greater than `eps(R_max)*max(nrows,ncols)`, where `R_max`
    /// is the largest diagonal entry of `R` and `eps(R_max)` is the same
    /// as the matlab function [`eps`](https://www.mathworks.com/help/matlab/ref/double.eps.html)
    /// for floating point relative accuracy.
    ///
    /// This is inspired by the logic of the MatLAB [`rank`](https://de.mathworks.com/help/matlab/ref/rank.html)
    /// function. However, that function uses the singular values rather than
    /// the diagonal elements of `R`.
    ScaledEps2,
}

impl<T> Default for RankDeterminationAlgorithm<T>
where
    T: RealField + Float,
{
    fn default() -> Self {
        Self::ScaledEps2
    }
}

// WARNING: qr must be a qr decomposition of a matrix where the upper triangular
// part stores the matrix R
pub(crate) fn calculate_rank<T, R, C, S>(
    qr: &Matrix<T, R, C, S>,
    method: RankDeterminationAlgorithm<T>,
) -> usize
where
    T: Scalar + RealField + Copy + Float + TotalOrder,
    R: Dim,
    C: Dim,
    S: Storage<T, R, C> + RawStorage<T, R, C> + IsContiguous,
{
    match method {
        RankDeterminationAlgorithm::FixedLowerBound(eps) => {
            calculate_rank_with_fixed_minimum(qr, eps)
        }
        RankDeterminationAlgorithm::ScaledEps1 => {
            let r_max = calculate_max_abs_diag(qr);

            let tol = r_max
                * T::epsilon()
                * T::RealField::from_usize(qr.nrows().max(qr.ncols()))
                    .expect("matrix dimensions out of floating point bounds");
            calculate_rank_with_fixed_minimum(qr, tol)
        }
        RankDeterminationAlgorithm::ScaledEps2 => {
            let r_max = calculate_max_abs_diag(qr);

            let tol = eps(r_max)
                * T::RealField::from_usize(qr.nrows().max(qr.ncols()))
                    .expect("matrix dimensions out of floating point bounds");
            calculate_rank_with_fixed_minimum(qr, tol)
        }
    }
}

fn calculate_rank_with_fixed_minimum<T, R, C, S>(qr: &Matrix<T, R, C, S>, eps: T) -> usize
where
    T: Scalar + RealField + Copy,
    R: Dim,
    C: Dim,
    S: Storage<T, R, C> + RawStorage<T, R, C> + IsContiguous,
{
    let eps = eps.abs();
    let dim = qr.nrows().min(qr.ncols());
    let mut rank = 0;
    for j in 0..dim {
        if qr[(j, j)].abs() > eps {
            rank += 1;
        }
    }
    rank
}

/// helper function to calculate the maximum diagonal element of a matrix
fn calculate_max_abs_diag<T, R, C, S>(mat: &Matrix<T, R, C, S>) -> T
where
    T: Scalar + RealField + Copy + TotalOrder,
    R: Dim,
    C: Dim,
    S: Storage<T, R, C> + RawStorage<T, R, C> + IsContiguous,
{
    let dim = mat.nrows().min(mat.ncols());

    (0..dim)
        .flat_map(|idx| {
            let val = mat[(idx, idx)];
            val.is_finite().then_some(val.abs())
        })
        .max_by(T::total_cmp)
        .unwrap_or(T::zero())
}

//@todo document
fn eps<T>(x: T) -> T
where
    T: ToPrimitive,
    T: Float,
{
    let x = x.abs();
    if x < T::min_positive_value() {
        return T::min_positive_value();
    }
    let Some(exponent) = T::log2(x).floor().to_i32() else {
        return T::min_positive_value();
    };

    let two = T::one() + T::one();
    two.powi(exponent) * T::epsilon()
}