numrs2 0.3.3

A Rust implementation inspired by NumPy for numerical computing (NumRS2)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Matrix module for NumRS2
// Provides matrix-specific functionality and operations

mod banded;
mod matrix_class;
pub mod special;

pub use banded::BandedMatrix;
pub use matrix_class::{
    asmatrix, asmatrix_from_nested, matrix, matrix_from_nested, matrix_from_scalar, Matrix,
};
pub use special::*;