Maximum Array size limit
251 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hi i am using R2016a and geting this error Requested 95319x84602 (60.1GB) array exceeds maximum array size preference. Creation of arrays greater than this limit may take a long time and cause MATLAB to become unresponsive. See array size limit or preference panel for more information.
I have changed maximum array size in prefrences to 10000 (Maximum allowed size) Any solution for this? Thanks in advance
2 commentaires
Réponses (4)
Adam
le 16 Mar 2017
Any solution for what? The fact that you want a 60 GB array in memory? Do you even have 60 GB of RAM? What do you want to do with the array? Even if you could find enough memory for it any calculations done on it would likely require still more memory.
doc matfile
can be used to create arrays too large to fit into memory though if you are sure you really need an array this big.
0 commentaires
Jan
le 16 Mar 2017
Modifié(e) : Jan
le 16 Mar 2017
You set the preferences to 10000 what? MB or GB? As far as I remember the size is set to the percentage of available RAM, so I'd expect something like 100%, but not "10'000".
Concerning your comment: 841372x3 means a 20MB array, 95319x84602 is a 64GB array. This is a remarkable difference.
Do you have 64GB of free RAM, or better the double size, which is required when you want to work with such arrays?
1 commentaire
eun joo yoon
le 6 Fév 2020
I have similar problem.
I want to deal with 500x500m scale global data in Matlab. (80150*34036 array)
I made tif to ascii in Arcmap.
But it is not open because of lack of memory,,
I wonder how other people deal with such global data such as MODIS data.
2 commentaires
Rik
le 6 Fév 2020
Steven Lord
le 6 Fév 2020
If you want to work with Big Data (data that's larger than you can store in memory) consider using one or more of the tools listed on this documentation page. For ASCII data that large, setting up a datastore for the file or files and using that datastore to create a tall array would probably be my first attempt.
Rik, while this question doesn't seem directly related to the original question it's at least in the same general space. I'm not sure it should be deleted.
Muniba Ashfaq
le 11 Sep 2020
I was also getting this error. I deleted all unnecessary variables from workspace to free up memory. I just keep those variables that was needed for my MATLAB code execution.
This worked amazingly.
0 commentaires
Voir également
Catégories
En savoir plus sur Spreadsheets dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!