How do you save the figures of a surface plot in some named file so that you can later used the saved figures to put together a movie?
조회 수: 2 (최근 30일)
이전 댓글 표시
I used the following below, but it does not work.
for j = 1 : : 1: 1000;
F (j) = getframe(gcf); %capture an image
image(F.cdata);
colormap(F.colormap);
j = j+1;
end
댓글 수: 0
답변 (1개)
Walter Roberson
2014년 2월 19일
편집: Walter Roberson
2014년 2월 19일
But look also at the "AVI file from animation" example at http://www.mathworks.com/help/matlab/ref/videowriterclass.html
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Animation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!