making a movie from plots

조회 수: 132 (최근 30일)
cgo
cgo 2015년 11월 18일
답변: Image Analyst 2023년 7월 8일
I am making an animation using a loop and the pause() function, and I want to save the entire animation to make a movie. The plot, as I understand, continuously refreshes to make an animation.
How can I do this?

답변 (2개)

Walter Roberson
Walter Roberson 2015년 11월 18일
  댓글 수: 3
Hussein
Hussein 2023년 7월 8일
Please try this
Hussein
Hussein 2023년 7월 8일
clc clear all close all Z = peaks; surf(Z) axis tight set(gca,'nextplot','replacechildren','visible','off') f = getframe; [im,map] = rgb2ind(f.cdata,256,'nodither'); im(1,1,1,20) = 0; for k = 1:20 surf(cos(2*pi*k/20)*Z,Z) f = getframe; im(:,:,1,k) = rgb2ind(f.cdata,map,'nodither'); end imwrite(im,map,'DancingPeaks.gif','DelayTime',0.1,'LoopCount',inf) %g443800

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2023년 7월 8일

카테고리

Help CenterFile Exchange에서 Animation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by