maximum size of matrix
1 回表示 (過去 30 日間)
古いコメントを表示
what would be the maximum possible size of a matrix, and how to overcome this problem?
0 件のコメント
採用された回答
Friedrich
2011 年 8 月 5 日
Hi,
a bit old but still valid I think:
And also more or less valid:
Since out = rand(10^9,4) gives an out of memory on 64bit but out = rand(10^9,3) works.
And you can run
[str,maxsize] = computer
in order to figure out the maximum number of elements allowed in an array with this version of MATLAB. See doc under
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!