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
use rustebra::scalar::Scalar;

pub(crate) fn run() {
    println!("\n== sqrt ==");
    println!("sqrt(2.0) [f32] = {:?}", Scalar::sqrt(2.0f32));
    println!("sqrt(2.0) [f64] = {:?}", Scalar::sqrt(2.0f64));
}