Maximum variable size allowed by the program is exceeded.

28 visualizaciones (últimos 30 días)
amani
amani el 23 de Ag. de 2024
Comentada: amani el 5 de Sept. de 2024
i have this problem
how can i resolve it plz !
  4 comentarios
John D'Errico
John D'Errico el 25 de Ag. de 2024
Editada: John D'Errico el 25 de Ag. de 2024
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 el 5 de Sept. de 2024
you are right thnk you for the information

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Marine and Underwater Vehicles en Help Center y File Exchange.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by