How to create an animation between 3 points

Hi! I want to make animation of a line between 3 points. Let's say point 1 is (0,0,0) and point 2 is (5,4,1). How can I create an animate line between them and plot the final point(b) in the plot as well?

回答 (2 件)

darova
darova 2021 年 5 月 23 日

0 投票

See this example
x = 0:10;
y = sin(x);
for i = 1:lengh(x)
plot(x(1:i),y(1:i))
pause(0.2)
end

カテゴリ

ヘルプ センター および File ExchangeAnimation についてさらに検索

製品

リリース

R2020b

質問済み:

2021 年 5 月 22 日

回答済み:

2021 年 5 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by