How to increase memory available for arrays?

43 views (last 30 days)
I am running 64bits Windows and MATLAB R2019b.
When I type "memory", I get:
Maximum possible array: 2314 MB (2.427e+09 bytes) *
Memory available for all arrays: 2314 MB (2.427e+09 bytes) *
Memory used by MATLAB: 2061 MB (2.162e+09 bytes)
Physical Memory (RAM): 16250 MB (1.704e+10 bytes)
But in MATLAB "memory" help page, it says that memory is limited by the smaller of the following
  • The largest contiguous memory block found in the MATLAB virtual address space
  • The total available system memory
So I can only assume that MATLAB is not able to allocate contiguous memory in its virtual address space that's more than 2GB...
Is this some limitation imposed by Windows 10 Home related to its heap manager?
Or how can I expand this value? Do I have to tweak with windows parameters somewhere?
This memory issue causes MATLAB to crash whenever I am plotting multiple "surf" figures, which rely on many large matrices...
The "Solve out of memory page" does not help, since I have the MATLAB preference set to not limit arrays according to RAM:
When I start MATLAB without JVM, I get
Maximum possible array: 2487 MB (2.608e+09 bytes) *
Memory available for all arrays: 2487 MB (2.608e+09 bytes) *
Memory used by MATLAB: 984 MB (1.031e+09 bytes)
Physical Memory (RAM): 16250 MB (1.704e+10 bytes)
So JVM is not the problem.
I am running MATLAB 9.7.0.1190202 (R2019b, 64bits) on Windows 10 Home (64bits), version 2004, build 19041.388
  1 Comment
James Tursa
James Tursa on 7 Aug 2020
If MATLAB actually crashes when calling surf for out of memory cases, you should submit a bug report. There shouldn't be a crash, just an out of memory error message.

Sign in to comment.

Answers (1)

Matt J
Matt J on 7 Aug 2020
Edited: Matt J on 7 Aug 2020
A simple solution might be to close other applications that might be consuming RAM. For example, closing Microsoft Outlook freed up almost 0.5 GB for me,
K>> memory
Maximum possible array: 18897 MB (1.981e+10 bytes) *
Memory available for all arrays: 18897 MB (1.981e+10 bytes) *
Memory used by MATLAB: 22442 MB (2.353e+10 bytes)
Physical Memory (RAM): 32654 MB (3.424e+10 bytes)
* Limited by System Memory (physical + swap file) available.
K>> memory
Maximum possible array: 19323 MB (2.026e+10 bytes) *
Memory available for all arrays: 19323 MB (2.026e+10 bytes) *
Memory used by MATLAB: 22434 MB (2.352e+10 bytes)
Physical Memory (RAM): 32654 MB (3.424e+10 bytes)
  5 Comments
Mauricio Girardi Schappo
Mauricio Girardi Schappo on 7 Aug 2020
Edited: Mauricio Girardi Schappo on 7 Aug 2020
Well, I do have a GPU card... I just set the system to use by default the NVIDEA card... MATLAB now jumped to 9 GB (still about half the system memory)... I looked it up in the Resource Manager... It seems the system has "cached" about 3 GB (I don't know why, but it should be a windows thing), and the rest is being used by MATLAB itself + other processes... So then it seems there's no way I can increase that number for available array memory anyways

Sign in to comment.

Categories

Find more on Startup and Shutdown 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!