Plot of Simultaneous paths using comet3
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How to plot simultaneous paths (or trajectories) using comet3 command
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 3 Jan. 2012
I think you could probably use "hold on" and then another comet3() command.
0 Kommentare
Weitere Antworten (1)
Jose Jeremias Caballero
am 3 Jan. 2012
could use the plot function.
t = -pi:pi/300:pi;
axis([-1 1 -1 1 -1 2])
hold on
for i=1:2:length(t)-1
T=[t(i) t(i+1)];
plot3(sin(5*T),cos(3*T),T,'r')
plot3(sin(5*T),sin(3*T),T,'b')
pause(0.000001)
end
hold off
0 Kommentare
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots 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!