i have a circle and i want to plot his half radius in the same figure can anyone help me :
angle=linspace(0,2*pi,360);
x=cos(angle);
y=sin(angle);
plot(x,y)
axis('equal')

댓글 수: 3

Walter Roberson
Walter Roberson 2019년 4월 21일
I am not sure what you mean about "his half radius" ? Do you mean a second circle with half the radius? If so then plot(x/2, y/2)
diadalina
diadalina 2019년 4월 21일
thank mr walter for your response, i mean by his half radius, the line that cuts its half radius
Walter Roberson
Walter Roberson 2019년 4월 21일
Which angle should it be drawn at?

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

답변 (1개)

KSSV
KSSV 2019년 4월 22일

1 개 추천

angle=linspace(0,2*pi,360)';
C = [0 0] ;
R = 1 ;
x=C(1)+R*cos(angle);
y=C(2)+R*sin(angle);
%
x1 = R/2*cos(angle) ;
y1 = R/2*sin(angle) ;
plot(x,y)
hold on
C1 = repmat(C,length(angle),1) ;
plot([C1(:,1) x1]',[C1(:,2) y1]')
axis('equal')

댓글 수: 4

diadalina
diadalina 2019년 4월 22일
thank you mr KSSV for your answer but i want somthing like this :circle.png
Walter Roberson
Walter Roberson 2019년 4월 22일
hold on
plot([0 1], [0 0])
hold off
This relies on the fact that the center of the circle is at 0, 0 and the radius of the circle is 1.
diadalina
diadalina 2019년 4월 22일
thank you mr walter for your help ;
KSSV
KSSV 2019년 4월 23일
angle=linspace(0,2*pi,360)';
C = [0 0] ;
R = 1 ;
x=C(1)+R*cos(angle);
y=C(2)+R*sin(angle);
%
x1 = R*cos(0) ;
y1 = R*sin(0) ;
plot(x,y)
hold on
plot([C(:,1) x1]',[C(:,2) y1]')
axis('equal')

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

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

질문:

2019년 4월 21일

댓글:

2019년 4월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by