Ploting Quarter Circle using for loop

2 次查看(过去 30 天)
I am supposed to plot the quarter circle below and call the instances from it.
for theta=0:-2.25:-90
R=.25;
xed=R*cosd(theta)
yed=R*sind(theta)
end
This code gives me the correct values but I cannot call on an instance.
theta=0:-2.25:-90;
for ii=1:length(theta)
R=.25;
xed(ii)=R*cosd(theta)
yed(ii)=R*sind(theta)
end
This code gives me incorrect values but I can call on an instance.

采纳的回答

David Hill
David Hill 2020-6-15
t=linspace(0,-pi/2,1000);
[x,y]=pol2cart(t,.25);
plot(x,y);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by