anyone can explain this error message
1 view (last 30 days)
Show older comments
What does this message mean?
??? Error using ==> vertcat
Out of memory. Type HELP MEMORY for your options.
0 Comments
Accepted Answer
Image Analyst
on 7 Jun 2013
It means you don't have enough memory to do the operation and create the new variable. Did you type HELP MEMORY?
0 Comments
More Answers (2)
Iain
on 7 Jun 2013
That error means that you have attempted to create a single variable that cannot fit contiguously into your system's memory.
0 Comments
Brwa
on 7 Jun 2013
2 Comments
Iain
on 7 Jun 2013
Do fewer iterations?
Write whatever you're logging to file? (Do this in chunks of a few 10MB at a time, rather than per-loop)
Image Analyst
on 7 Jun 2013
It's not the fact that you're doing 200 million iterations, it's what you're doing inside it. And if you're concatenating something (who knows because you didn't provide code), then there is a possibility that that variable gets too big.
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!