How to resolve out of memory error in matlab? Please read details

4 ビュー (過去 30 日間)
mechE
mechE 2018 年 4 月 2 日
コメント済み: mechE 2018 年 4 月 4 日
I am working on an ubuntu system with 24 core workstation. I need to load a large matrix of size (15,9000,100,90). Can any one please help me resolve this error. Do we get this error because of space limitation on matlab or the system? Since my system has enough space, I am still getting this error.
  6 件のコメント
mechE
mechE 2018 年 4 月 4 日
Thank you. I will read this.

サインインしてコメントする。

回答 (1 件)

William Smith
William Smith 2018 年 4 月 3 日
編集済み: William Smith 2018 年 4 月 3 日
Type
memory
And check the size of the maximum possible array. An array needs contiguous memory, it's possible yours is fragmented.
If that doesn't help, try
feature('memstats')
(see https://undocumentedmatlab.com/blog/undocumented-feature-function ) Also, look into sparse arrays if the data is sparse (i.e. most elements are 0).
  1 件のコメント
Walter Roberson
Walter Roberson 2018 年 4 月 3 日
memory() is only valid on MS Windows, but the user is using Linux. The same is true for feature('memstats') -- not available on Mac or Linux.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangePerformance and Memory についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by