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

mod static_matrix;

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

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

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