how to save work space?
조회 수: 2 (최근 30일)
이전 댓글 표시
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
답변 (3개)
Thomas
2012년 7월 26일
편집: Thomas
2012년 7월 26일
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
2012년 7월 26일
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
venkat vasu
2012년 7월 26일
save('filename','A','-append') use this code
this may be useful for you.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!