フィルターのクリア

how could i animate a series as an animation ?

1 回表示 (過去 30 日間)
HADIMARGO
HADIMARGO 2018 年 12 月 13 日
編集済み: Adam Danz 2020 年 1 月 28 日
a function like :
just with loop

採用された回答

Adam Danz
Adam Danz 2018 年 12 月 13 日
編集済み: Adam Danz 2020 年 1 月 28 日
Here's a demo below. First create the data, set up the figure, then loop through each coordinate to plot the next line segment (or dot); use drawnow to update the plot on each iteration.
Run this demo to watch the sin wave form.
% Create your data
x = 0:.1:4*pi;
y = sin(x);
% Create figure
figure
ah = axes;
% Set axis limits so they aren't continually adjusted
ylim([-1,1])
xlim([0, 4*pi])
hold(ah, 'on') %Hold the axis!
% loop through each point / line segment
for i = 2:numel(x)
plot(x(i-1:i), y(i-1:i), '-b')
drawnow %Update the plot!
end
Update: Here are better demos and more options I added 2 years later

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnimation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by