Maximum variable size allowed by the program is exceeded.

31 ビュー (過去 30 日間)
amani
amani 2024 年 8 月 23 日
コメント済み: amani 2024 年 9 月 5 日
i have this problem
how can i resolve it plz !
  4 件のコメント
John D'Errico
John D'Errico 2024 年 8 月 25 日
編集済み: John D'Errico 2024 年 8 月 25 日
And even if you could address 2^64 memory elements, you will still have problems.
You should note that even boolean variables in MATLAB still take up 1 byte. One gigabyte is 1e9 bytes. If you want to address 2^64 bytes, then you will need
requiredGigaBytes = 2^64/1e9
requiredGigaBytes = 1.8447e+10
So roughly 2e10 gigabytes of RAM. Or 2e7 terabytes. Or 2e4 petabytes. Or 20 exabytes.
Do you realize just how large that is? A comparison from the New York Times in 2003 had this approximate estimate:
'An exabyte (one million terabytes) is so large that it is estimated that 'all words ever spoken or written by all humans that have ever lived in every language since the very beginning of mankind would fit on just 5 exabytes.'
Ever spoken, OR written. And you want to store 4 times that amount.
The point is, you need to reformulate what you are doing, COMPLETELY reformulate. While there are many small problems easily solved using a brute force approach, that same problems often grow exponentially in size. That means you will not always be able to use the same scheme that worked for a small problem on a large problem.
amani
amani 2024 年 9 月 5 日
you are right thnk you for the information

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeMarine and Underwater Vehicles についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by