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
8
9
10
11
12
13
14
15
16
//! Construct `StaticStorage`/`DynamicStorage` and inspect them through the `Storage` trait.
//!
//! Run with: `cargo run --example storage` (static only), or
//! `cargo run --example storage --features alloc` (static and dynamic)

mod r#static;

#[cfg(feature = "alloc")]
mod dynamic;

fn main() {
    r#static::run();

    #[cfg(feature = "alloc")]
    dynamic::run();
}