sukker 2.1.3

Linear Algebra and Matrices made easy!
Documentation
1
2
3
4
5
6
7
use sukker::SparseMatrix;

fn main() {
    let matrix = SparseMatrix::<i32>::eye(100);

    println!("Sparsity: {}", matrix.sparsity());
}