1 2 3 4 5 6 7
use sukker::SparseMatrix; fn main() { let matrix = SparseMatrix::<i32>::eye(100); println!("Sparsity: {}", matrix.sparsity()); }