rustebra 0.3.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 `StaticVector`/`DynamicVector` and run each vector operation on them.
//!
//! Run with: `cargo run --example vector` (static only), or
//! `cargo run --example vector --features alloc` (static and dynamic)

mod static_vector;

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

fn main() {
    static_vector::run();

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