Borrar filtros
Borrar filtros

out of memory, how to solve?

2 visualizaciones (últimos 30 días)
matteo avanzi
matteo avanzi el 5 de Dic. de 2017
Comentada: matteo avanzi el 5 de Dic. de 2017
i was running a script and in the middle the program get me out of memory error. how can i solve it? the problem is probably the dimension of the workspace that is more than 2 GB at the time of the error.
thanks
  6 comentarios
matteo avanzi
matteo avanzi el 5 de Dic. de 2017
R2017b, i have 30 31536000x1 double arrays, 2 1x31536000 an 15 scalar.
the problem are the 2 1x31536000?
matteo avanzi
matteo avanzi el 5 de Dic. de 2017
ok thanks that's was the problem

Iniciar sesión para comentar.

Respuestas (1)

Rik
Rik el 5 de Dic. de 2017
As Walter hinted, the problem is implicit expansion:
A=1:4;
B=A';
A.*B
ans =
1 2 3 4
2 4 6 8
3 6 9 12
4 8 12 16
So your syntax expands the already large vectors to an even larger matrix. Adding a transpose to one of the vectors will solve this.

Categorías

Más información sobre Triangulation Representation 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