anyone can explain this error message
이전 댓글 표시
What does this message mean?
??? Error using ==> vertcat
Out of memory. Type HELP MEMORY for your options.
채택된 답변
추가 답변 (2개)
Iain
2013년 6월 7일
0 개 추천
That error means that you have attempted to create a single variable that cannot fit contiguously into your system's memory.
Brwa
2013년 6월 7일
0 개 추천
댓글 수: 2
Iain
2013년 6월 7일
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
2013년 6월 7일
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.
카테고리
도움말 센터 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!