Tagged Questions
3
votes
2answers
115 views
C API Library for Solving Sparse Systems of Linear Equations?
I need to solve a large, sparse system of linear equations from a program written in D. Ideally I'd like a library with a D-style interface, but I doubt one exists. However, D can directly access C ...
3
votes
2answers
512 views
Using Sparse to check C code
Does anyone have experience with Sparse? I seem unable to find any documentation, so the warnings and errors it produces are unclear to me. I tried checking the mailing list and man page but there ...
2
votes
2answers
111 views
Is there a method of quickly determining whether a chunk read from a (sparse) file is all zeros?
Is there a method of quickly determining whether a (4KB-16MB) chunk read from a file is all zeros?
You can iterate over the chunk, checking each byte. There are obvious optimisations, but it remains ...
0
votes
1answer
82 views
Sparse matrix insert in c
I am trying to do an efficient sparse matrix multiplication. Right now I am reading the data into memory and this is how my data structure looks like:
typedef struct node{
int x;
int y;
int value;
...