rmatrix_ks 0.5.2

matrix and some algebra in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # matrix
//!
//! Matrix and relative operations.
//!
//! > All matrix indices are 1-based.

pub mod math;
pub mod matrix;
pub mod serde;
pub mod utils;
pub mod vector;

#[cfg(feature = "extra")]
pub mod extra;