sukker 2.0.2

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

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

    println!("Sparcity: {}", matrix.sparcity());

    matrix.print(3);
}