필터 지우기
필터 지우기

Out of memory while ruuning matlab code? its error based on coding or hardware issues ?

조회 수: 3 (최근 30일)
Out of memory while ruuning matlab code? its error based on coding or hardware issues ? can any one share ideas ?

답변 (1개)

Asieh Daneshi
Asieh Daneshi 2019년 2월 16일
both!
Your computer RAM is not powerful enough to run your code. sometimes you can solve this issue by changing your code. for example, try to remove nested loops, and replace them with codes that work on arrays. also, try to break large matrixes into smaller ones so that computer can hold them in memory. Delete used variables from the memory as soon as you don't need them anymore.
  댓글 수: 1
Walter Roberson
Walter Roberson 2019년 2월 16일
Software error can be responsible . In r2016b and later if you add (multiply, subtract , or other binary operations ) between a row vector and aa column vector then it is no longer an error and instead is treated as if you had used bsxfun.
But there are also common routines that need a lot more memory than expected . Some routines produce output that is half the square of the number of input column , in each direction, so 1000 columns of input could .output 500000 by 500000

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by