HOW I CAN PLOT A CIRCLE BYE CIRCLE ONE AFTER ONE NOT IN THE SAME TIME

조회 수: 2 (최근 30일)
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

채택된 답변

Walter Roberson
Walter Roberson 2015년 11월 2일
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
ali hadjer
ali hadjer 2015년 11월 2일
I want to draw a circle (as a radius) for each point ,draws the circle one by one
ali hadjer
ali hadjer 2015년 11월 2일
r is the radios and x and y is coordiante of point

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by