rustebra 0.4.0

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_vector;
pub use self::static_vector::StaticVector;

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