nalgebra/src/linalg/mod.rs

52 lines
1.2 KiB
Rust
Raw Normal View History

2017-08-16 00:24:34 +08:00
//! [Reexported at the root of this crate.] Factorization of real matrices.
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
// 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;
mod decomposition;
#[cfg(feature = "std")]
mod exp;
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;
mod pow;
2018-10-22 13:00:10 +08:00
mod qr;
mod schur;
2018-10-22 13:00:10 +08:00
mod solve;
mod svd;
mod symmetric_eigen;
2018-10-22 13:00:10 +08:00
mod symmetric_tridiagonal;
mod udu;
2020-11-15 23:57:49 +08:00
//// TODO: Not complete enough for publishing.
//// 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::*;
#[cfg(feature = "std")]
2020-04-03 17:11:14 +08:00
pub use self::exp::*;
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::*;
pub use self::pow::*;
2018-10-22 13:00:10 +08:00
pub use self::qr::*;
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::*;
pub use self::udu::*;