Borrar filtros
Borrar filtros

More than 580 billion possibilities

1 visualización (últimos 30 días)
asim nadeem
asim nadeem el 6 de Sept. de 2019
Comentada: asim nadeem el 8 de Sept. de 2019
Is it possible to check more than 580 billion possibilities in matlab without getting out of memory.

Respuesta aceptada

Matt J
Matt J el 6 de Sept. de 2019
Editada: Matt J el 6 de Sept. de 2019
Sure, for example,
count=0;
for i=1:580*1e9
possibility=rand;
if possibility>0.5
count=count+1;
end
end

Más respuestas (1)

Walter Roberson
Walter Roberson el 6 de Sept. de 2019
If you hold all of the possibilities in memory at the same time, and they take as little as 8 bytes each (that is, one double), then that would take over 4 1/4 terabytes. There are systems that can handle that much memory, so in theory you could do it, if you had the hardware.
There are some calculations that can be handled in "chunks" automatically by using "tall arrays"; see https://www.mathworks.com/help/matlab/tall-arrays.html

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by