anyone can explain this error message
Ältere Kommentare anzeigen
What does this message mean?
??? Error using ==> vertcat
Out of memory. Type HELP MEMORY for your options.
Akzeptierte Antwort
Weitere Antworten (2)
Iain
am 7 Jun. 2013
0 Stimmen
That error means that you have attempted to create a single variable that cannot fit contiguously into your system's memory.
Brwa
am 7 Jun. 2013
0 Stimmen
2 Kommentare
Iain
am 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
am 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.
Kategorien
Mehr zu Multidimensional Arrays finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!