2017-08-16 00:24:34 +08:00
|
|
|
//! [Reexported at the root of this crate.] Factorization of real matrices.
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
pub mod balancing;
|
|
|
|
mod bidiagonal;
|
|
|
|
mod cholesky;
|
2020-04-06 00:49:48 +08:00
|
|
|
mod convolution;
|
2018-10-22 13:00:10 +08:00
|
|
|
mod determinant;
|
2020-11-15 23:57:49 +08:00
|
|
|
// TODO: this should not be needed. However, the exp uses
|
2020-08-26 02:44:03 +08:00
|
|
|
// explicit float operations on `f32` and `f64`. We need to
|
|
|
|
// get rid of these to allow exp to be used on a no-std context.
|
2021-02-25 19:59:14 +08:00
|
|
|
mod col_piv_qr;
|
2020-11-14 00:26:47 +08:00
|
|
|
mod decomposition;
|
2020-08-26 02:44:03 +08:00
|
|
|
#[cfg(feature = "std")]
|
2020-04-02 04:36:05 +08:00
|
|
|
mod exp;
|
2017-08-03 01:37:44 +08:00
|
|
|
mod full_piv_lu;
|
2018-10-22 13:00:10 +08:00
|
|
|
pub mod givens;
|
|
|
|
mod hessenberg;
|
|
|
|
pub mod householder;
|
|
|
|
mod inverse;
|
|
|
|
mod lu;
|
|
|
|
mod permutation_sequence;
|
2021-04-06 01:17:49 +08:00
|
|
|
mod pow;
|
2018-10-22 13:00:10 +08:00
|
|
|
mod qr;
|
2017-08-03 01:37:44 +08:00
|
|
|
mod schur;
|
2018-10-22 13:00:10 +08:00
|
|
|
mod solve;
|
2017-08-03 01:37:44 +08:00
|
|
|
mod svd;
|
|
|
|
mod symmetric_eigen;
|
2018-10-22 13:00:10 +08:00
|
|
|
mod symmetric_tridiagonal;
|
2020-09-25 13:21:13 +08:00
|
|
|
mod udu;
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2020-11-15 23:57:49 +08:00
|
|
|
//// TODO: Not complete enough for publishing.
|
2017-08-03 01:37:44 +08:00
|
|
|
//// This handles only cases where each eigenvalue has multiplicity one.
|
|
|
|
// mod eigen;
|
|
|
|
|
|
|
|
pub use self::bidiagonal::*;
|
|
|
|
pub use self::cholesky::*;
|
2021-02-25 19:59:14 +08:00
|
|
|
pub use self::col_piv_qr::*;
|
2020-04-06 00:49:48 +08:00
|
|
|
pub use self::convolution::*;
|
2020-08-26 02:44:03 +08:00
|
|
|
#[cfg(feature = "std")]
|
2020-04-03 17:11:14 +08:00
|
|
|
pub use self::exp::*;
|
2017-08-03 01:37:44 +08:00
|
|
|
pub use self::full_piv_lu::*;
|
2018-10-22 13:00:10 +08:00
|
|
|
pub use self::hessenberg::*;
|
|
|
|
pub use self::lu::*;
|
|
|
|
pub use self::permutation_sequence::*;
|
2021-04-06 01:17:49 +08:00
|
|
|
pub use self::pow::*;
|
2018-10-22 13:00:10 +08:00
|
|
|
pub use self::qr::*;
|
2017-08-03 01:37:44 +08:00
|
|
|
pub use self::schur::*;
|
|
|
|
pub use self::svd::*;
|
|
|
|
pub use self::symmetric_eigen::*;
|
2018-10-22 13:00:10 +08:00
|
|
|
pub use self::symmetric_tridiagonal::*;
|
2020-09-25 13:21:13 +08:00
|
|
|
pub use self::udu::*;
|