Hi COMM, How can I hold only one plot while updating the rest in a figure ? E.g. I want to keep (x,f) plot fixed , while keeping the current value for the animated plot
2 ビュー (過去 30 日間)
古いコメントを表示
SSmin=0;
SSmax=19;
x=SSmin:0.01:SSmax;
f= (x).*sin(x) +20;
figure
plot(x,f)
hold on
for k=1:length(x)
plot(x(k),f(k),'or')
axis([SSmin SSmax 0 30])
pause(0.2)
end
0 件のコメント
回答 (1 件)
VBBV
2022 年 1 月 20 日
編集済み: VBBV
2022 年 1 月 20 日
for k=1:length(x)
plot(x(1:k),f(1:k),'or')
axis([SSmin SSmax 0 30])
pause(2)
end
Check with this
参考
カテゴリ
Help Center および File Exchange で Animation についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!