Clear Filters
Clear Filters

how to deal with the array size limits problem?

6 views (last 30 days)
xd h
xd h on 24 Jun 2021
Commented: xd h on 28 Jun 2021
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?

Answers (1)

Steven Lord
Steven Lord on 24 Jun 2021
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 Comments
Steven Lord
Steven Lord on 28 Jun 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
xd h on 28 Jun 2021
What I do is 3D-synthetic aperture focusing technique(3D-SAFT) in Ultrasonic .
There are several steps below.
1.Capturing the amplitude of the ultrasonic A-Sacn signal of every excitation source.
2.Seting the parameters,such as sampling frequency,ultrasonic wave speed,imaging area ,excitation source position and so on.
3.Deviding the 3D area into several meshes.
4.Computing the time-delay from every mesh to every excitation source position.
5.Extracting corresponding amplitude of every mesh from amplitude matrix using time-delay and sampling frequency ,and then superimpositting the amplitude.
6.Visualizing the 3D focusing data

Sign in to comment.

Categories

Find more on Search Path in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!