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

11 views (last 30 days)
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.

Answers (2)

Image Analyst
Image Analyst on 3 Dec 2022

Voss
Voss on 5 Dec 2022
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

Community Treasure Hunt

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

Start Hunting!