pub fn assert_positive_definite<F>(
matrix: &ArrayView2<'_, F>,
name: &str,
) -> CoreResult<()>Expand description
Assert that a 2-D symmetric matrix is positive definite.
Uses attempted Cholesky decomposition (pure Rust, no BLAS) to check.
pub fn assert_positive_definite<F>(
matrix: &ArrayView2<'_, F>,
name: &str,
) -> CoreResult<()>Assert that a 2-D symmetric matrix is positive definite.
Uses attempted Cholesky decomposition (pure Rust, no BLAS) to check.