anyone can explain this error message
조회 수: 1 (최근 30일)
이전 댓글 표시
What does this message mean?
??? Error using ==> vertcat
Out of memory. Type HELP MEMORY for your options.
댓글 수: 0
채택된 답변
Image Analyst
2013년 6월 7일
It means you don't have enough memory to do the operation and create the new variable. Did you type HELP MEMORY?
댓글 수: 0
추가 답변 (2개)
Iain
2013년 6월 7일
That error means that you have attempted to create a single variable that cannot fit contiguously into your system's memory.
댓글 수: 0
Brwa
2013년 6월 7일
댓글 수: 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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!