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!