HOW I CAN PLOT A CIRCLE BYE CIRCLE ONE AFTER ONE NOT IN THE SAME TIME
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ali hadjer
am 2 Nov. 2015
Kommentiert: ali hadjer
am 2 Nov. 2015
I HAVE THIS CODE
th = 0:pi/50:2*pi;
xrunit = r * cos(th) + X2;
yrunit = r * sin(th) + Y2;
plot(xrunit, yrunit,'r');
MY QUESTION
HOW I CAN PLOT A CIRCLE BYE CIRCLE ONE AFTER ONE NOT IN THE SAME TIME
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 2 Nov. 2015
plot(xrunit, yrunit,'r*');
perhaps?
Or did you want to draw one point, show that, then draw only the next point, show that, and so on, with only one point showing at a time, going around the circle?
Or did you want to draw the first point and show that, then the first two points, show that, then the first three, and so on, building up the circle as you go?
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D 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!