Crates.io | sparse_matrix |
lib.rs | sparse_matrix |
version | 0.6.3 |
source | src |
created_at | 2023-04-18 07:25:20.179548 |
updated_at | 2024-06-03 19:47:31.514275 |
description | A library to do linear algebra with sparse matrix |
homepage | |
repository | |
max_upload_size | |
id | 842245 |
size | 13,158 |
A library to do solve sparse algebra problems.
You are meant to create build your matrix using a coo_mat that uses a HashMap to store the matrix. Then transform it to a csr_matrix that uses the Compressed Sparse Row format that will be used to solve your problem.