How do I create a video from an animated plot?

58 Ansichten (letzte 30 Tage)
Moein M
Moein M am 11 Jun. 2020
Kommentiert: Image Analyst am 18 Aug. 2020
I want to create a video of the animated plot generated by this code:
clc
clear
close all
bb = importdata('data.txt');
xx = bb(:,1);
yy = bb(:,2);
plot(xx,yy)
xlabel('Time (Second)');
ylabel('Acceleration (Centimeter/Secon^2)');
curve = animatedline('Color', 'r');
grid off;
for i = 1:length(xx)
addpoints(curve,xx(i), yy(i));
drawnow limitrate
pause(0.0005)
end
Any thoughts on how to do that?
Thank you.
  1 Kommentar
Image Analyst
Image Analyst am 18 Aug. 2020
Not sure what your edit was (maybe you removed 'data.txt' attachment???), but the answers below should still work fine. Why don't you try and accept my Answer below?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Image Analyst
Image Analyst am 13 Jun. 2020
Here's a demo where I made a movie from a surf() plot where the plot changed at each frame.

Weitere Antworten (1)

KSSV
KSSV am 11 Jun. 2020

Kategorien

Mehr zu Animation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by