vote up 3 vote down star
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

flag

58% accept rate

7 Answers

vote up 2 vote down

Save the sparse matrix as a .mat file. Then, in the other program, use a suitable library to read the .mat file.

For instance, if the other program is written in Python, you can use the scipy.io.mio.loadmat function, which supports sparse arrays and gives you a sparse numpy matrix.

link|flag
other program is rapidminer – Midhat Oct 20 '08 at 9:35
vote up 1 vote down

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.

link|flag
yes thats always an option, it will probably take a lot of time writing ascii chunks and merging them later – Midhat Oct 20 '08 at 9:35
vote up 1 vote down check

I saved it as text using java within matlab . This is the coolest thing i have ever seen in a scripting environment.

Matlab Code:


pw=java.io.PrintWriter(java.io.FileWriter('c:\\retail.txt'));
line=num2str(0:size(data,2)-1);
pw.println(line);
for index=1:length(data)
    disp(index);
    line=num2str(full(data(index,:)));
    pw.println(line);
end
pw.flush();
pw.close();

here data is an extremely large sparse matrix

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Use the find function to get the indices of non-zero elements...

idcs = find(data);
vals = data(idcs);
...save the index vector and value vector in whatever format you want...

If you want, you can use ind2sub to convert the linear indices to row, column subscripts.

If you need to recreate a sparse matrix in matlab from subscripts + values, use spconvert.

link|flag
vote up 0 vote down

Midhat: How load this file using java?

link|flag
just use BufferedReader. read the file line by line and split the data on space – Midhat Dec 23 '08 at 15:38
vote up 0 vote down

You can use find to get index & value vectors:

[i,j,val] = find(data)
save_data = [i,j,val]

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):

data = spconvert( save_data )

You can save to ascii with:

save -ascii data.txt save_data

But this dumps indices as double, you can write it out more nicely with fopen/fprintf/fclose:

fid = fopen('data.txt','w')
fprintf( fid,'%d %d %f\n', save_data' )
fclose(fid)

Hope this helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.