How can I store video of my for loop code?

13 Ansichten (letzte 30 Tage)
J Kwon
J Kwon am 28 Aug. 2022
Kommentiert: Abderrahim. B am 28 Aug. 2022
Hello, I am beginner for Matlab and use Matlab 2014a.
I made my code which is consisted of for loop statement.
So I want to store the variation of my plot into the avi file.
Could you help me?
  1 Kommentar
Abderrahim. B
Abderrahim. B am 28 Aug. 2022
Hi!
Share what you have tried to write as code as well as the plots you want to 'store' as an avi .
Thanks

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Abderrahim. B
Abderrahim. B am 28 Aug. 2022
I ve written the below code that you can refer to.
clear
t = 0:1/100:1-1/100;
vObj = VideoWriter('AnimPPlot.avi');
open(vObj);
for ii = 1:length(t)
plot(t, exp(-ii*t))
pltHandle = gcf ;
im = frame2im(getframe( pltHandle )) ;
writeVideo(vObj, im); % Write avi video
end
close(vObj)
Hope this helps
  2 Kommentare
J Kwon
J Kwon am 28 Aug. 2022
Thank you for your kindness Issa!
I accoplished my problem thanks to you.
Abderrahim. B
Abderrahim. B am 28 Aug. 2022
You are welcome!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Produkte


Version

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by