rustebra 0.2.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
8
9
10
11
12
13
14
//! Run each `Scalar` operation on `f32` and `f64`: basic arithmetic identities per type
//! (`f32`, `f64`), then `sqrt` across both types.
//!
//! Run with: `cargo run --example scalar`

mod f32;
mod f64;
mod sqrt;

fn main() {
    f32::run();
    f64::run();
    sqrt::run();
}