according to one of the answers to this question:
When should I be using `sparse`?
you shouldn't really bother with a sparse matrix when you have more than 25% of the matrix as non-zeros
but my question is; is there a rule of thumb for what size a matrix should be before making it sparse? Is there much of an advantage to using a sparse matrix if it is only 100x100, even if there are only 5-10% non-zero entries?
what is a good threshold for matrix dimensions where it becomes a good idea to use sparse matrices?
EDIT:
just for context, i am looking at having a 500x500 matrix, with about 10000 entries, and i would like to know if i should use a sparse matrix or not. But i am also interested if there is a general rule of thumb that i should use..