Export values of huge container.Map object
Show older comments
Hi,
I have a container.Map with 6768252 keys which values are of great interest for an statistical assignment.
When I want to make a plot with the values of that container.Map, I try to create an array but I get 'Out of memory' error.
>> bytes = values(bytesMap) ??? Error using ==> values Out of memory. Type HELP MEMORY for your options.
The same happens when trying to export the values to a .txt file with dlmwrite, so I could deal with the values with another software:
>>dlmwrite(filename,values(bytesMap), 'delimiter',' ', 'precision',20); ??? Error using ==> values Out of memory. Type HELP MEMORY for your options.
Anny suggestions how to solve this issue?
Thanks.
Answers (1)
Sean de Wolski
on 9 May 2011
0 votes
Invest in a 64 bit system...
1 Comment
Alberto Perez
on 9 May 2011
Categories
Find more on Code Performance in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!