I have a 30000x14000 sparse matrix in matlab, which I need to use in another program. calling save won't write this as ascii (not supported). calling full() on this monster gets Out of Memory. How do i export it
Matlab 7
|
1
|
I have a 30000x14000 sparse matrix in matlab, which I need to use in another program. calling save won't write this as ascii (not supported). calling full() on this monster gets Out of Memory. How do i export it Matlab 7
|
||
|
|
|
|
Save the sparse matrix as a For instance, if the other program is written in Python, you can use the |
||
|
|
|
Did you try partitioning it ? I mean try calling full() on the 1000 first rows (or 5000) and then repeat the process if it works. |
||
|
|
|
I saved it as text using java within matlab . This is the coolest thing i have ever seen in a scripting environment. Matlab Code:
here data is an extremely large sparse matrix |
||
|
|
|
|
If this is pretty much a one time deal, then I would just iterate through the matrix and write the matrix to an ASCII file by brute force, or else use @Veynom's suggestion and call full() on a subset of rows. It may take a while, but it will probably be done faster than it might take to learn how to read in a .mat file outside of the MATLAB environment. If this is something you need to do on a recurring basis, then I would take @Vebjorn's advice and use a library to read the .mat file. |
||
|
|
|
|
Use the
If you want, you can use If you need to recreate a sparse matrix in matlab from subscripts + values, use |
||
|
|
|
|
Midhat: How load this file using java? |
||
|
|
|
You can use find to get index & value vectors:
You can recreate data from save_data with spconvert, which is meant to "Import from sparse matrix external format" (so I guess it's a good export format):
You can save to ascii with:
But this dumps indices as double, you can write it out more nicely with fopen/fprintf/fclose:
Hope this helps. |
||
|
|