I've got a plain text data file (.dat) containing sparse matrix information that I'd like to import into MATLAB. It looks a bit like:
(1,2) 1
(2,3) 2
And so forth, where we've got the index for matrix position in the left hand column, and the value to go there in the right. Searching around hasn't turned up a nice and easy way to do this, but I don't have an overwhelming amount of experience with MATLAB, so I don't know if I'm missing something obvious.
Thanks!