How to plot a semi-circle on the horizontal axis in MATLABs & How to shade half the cirlce?

13 次查看(过去 30 天)
Hello I recetly got into plotting on MATLABs and I was wondering how I could create a semi-circle on the x-axis, and shade half of the semi-cicle afterwards.

回答(2 个)

Image Analyst
Image Analyst 2022-12-3

Voss
Voss 2022-12-5
Npts = 101;
r = 2;
c = [0 0];
theta = linspace(0,pi,Npts);
x = c(1) + r.*cos(theta);
y = c(2) + r.*sin(theta);
fill([x(1:(Npts+1)/2) c(1) x(1)], ...
[y(1:(Npts+1)/2) c(2) y(1)], ...
'y', ...
'EdgeColor','none')
hold on
plot([x x(1)],[y y(1)],'k','LineWidth',2)
axis equal

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by