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
15
//! Tour `algorithm::vector` and `algorithm::matrix`'s functions directly, the layer
//! `StaticVector`/`DynamicVector` and `StaticMatrix`/`DynamicMatrix` are built on top of: each
//! function takes `Storage` operands and caller-provided output buffers instead of a
//! vector/matrix type, and several matrix operations (LU, QR, Cholesky, SVD, condition number)
//! aren't wrapped by either matrix type at all yet.
//!
//! Run with: `cargo run --example algorithm`

mod matrix;
mod vector;

fn main() {
    vector::run();
    matrix::run();
}