Borrar filtros
Borrar filtros

why i cant have a=zeros(1:200)?

3 visualizaciones (últimos 30 días)
ihab
ihab el 22 de Sept. de 2015
Comentada: ihab el 23 de Sept. de 2015
i get these message "Error using zeros Maximum variable size allowed by the program is exceeded" when i use a=zeros(1:200)

Respuestas (2)

Guillaume
Guillaume el 22 de Sept. de 2015
zeros(1:200)
means an array of 0s of size 1x2x3x4x5x...x199x200, a 200-D arrays with 200! ~= 8e374 elements. I don't think you'll find a computer with that much memory.
Not sure what you were trying to do. If you want to create a row vector with 200 zeros:
a = zeros(1, 200)
  1 comentario
ihab
ihab el 23 de Sept. de 2015
thank you very much for your answer.

Iniciar sesión para comentar.


Steven Lord
Steven Lord el 22 de Sept. de 2015
You almost certainly meant a = zeros(1, 200) which creates a 200 element vector containing all 0's. What you wrote tries to create a 1-by-2-by-3-by-4-by-5-by-6-by-7-by-...-194-by-195-by-196-by-197-by-198-by-199-by-200 200-dimensional array.
Even if you created that as a logical array (1 byte per element) that would require about 7e350 yottabytes of memory. Read what would be required to store one yottabyte on that Wikipedia page, and realize that even if you could store one yottabyte of data in each atom in the universe, you still wouldn't come close to the memory required to store that array.
  1 comentario
ihab
ihab el 23 de Sept. de 2015
well,thank you very much, i think i understand now why.

Iniciar sesión para comentar.

Categorías

Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by