how to deal with the array size limits problem?
Mostra commenti meno recenti
I built a zero arra using "I=zeros(80,80,400,400,700);"
But the commamd window said
" The requested 80x80x400x400x700 (5340.6GB array exceeds the preset maximum array size. Creating arrays larger than this limit can take a long time and cause matlab to be unresponsive. For more information, see array size limits or presets panel"
What dose it mean?And how to deal with it?
Risposte (1)
Steven Lord
il 24 Giu 2021
0 voti
You're asking for roughly 5 terabytes of contiguous memory. To put that into some context, in 2012 the English Wikipedia had about 1.9 terabytes of multimedia files.
If your machine has enough memory to create such a large array you can uncheck the preference to limit the amount of memory / size of the array that MATLAB will try to allocate. However, allocating that large a chunk of memory is likely to take a long time and doing anything with that data may require a second large chunk of memory.
Consider if you actually need to create that huge an array. If you describe what you're trying to do we may be able to suggest an alternate approach that requires less memory (or perhaps multiple smaller chunks that take up the same total amount of space.)
4 Commenti
xd h
il 28 Giu 2021
xd h
il 28 Giu 2021
Steven Lord
il 28 Giu 2021
Please explain in words not code what you're trying to do with this code and we may be able to offer some suggestions.
xd h
il 28 Giu 2021
Categorie
Scopri di più su Operators and Elementary Operations in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
