how to save work space?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dears
I am trying to save the workspace of my simulation program, however I get this message
Not enough memory to read file contents: Java heap space
Could you please help me with this!
regards
0 comentarios
Respuestas (3)
Thomas
el 26 de Jul. de 2012
Editada: Thomas
el 26 de Jul. de 2012
You could increase the Java Heap size as follows:
Windows:File->Preferences->General->Java heap space
Mac: MATLAB->Prefernces->General-> Java Heap Memory
Move the slider to maximum available Java Heap size and see if you still get the error
USe save or matfile to save your workspace
doc save
doc matfile
Sumit Tandon
el 26 de Jul. de 2012
How are you saving the workspace? If you are saving variables to MAT-files, then consider using MATFILE command. It allows saving variable partially - using less memory in the process.
0 comentarios
venkat vasu
el 26 de Jul. de 2012
save('filename','A','-append') use this code
this may be useful for you.
0 comentarios
Ver también
Categorías
Más información sobre File Operations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!