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

1 vue (au cours des 30 derniers jours)
voxey
voxey le 16 Fév 2019
Commenté : Walter Roberson le 16 Fév 2019
Out of memory while ruuning matlab code? its error based on coding or hardware issues ? can any one share ideas ?

Réponses (1)

Asieh Daneshi
Asieh Daneshi le 16 Fév 2019
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 commentaire
Walter Roberson
Walter Roberson le 16 Fév 2019
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

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by