rustebra 0.3.1

A hybrid no_std/alloc linear algebra crate for Rust, scaling from embedded targets to dynamic Krylov subspace solvers.
Documentation
1
2
3
4
5
6
7
mod static_matrix;
pub use self::static_matrix::StaticMatrix;

#[cfg(feature = "alloc")]
mod dynamic_matrix;
#[cfg(feature = "alloc")]
pub use self::dynamic_matrix::DynamicMatrix;