How to plot a semi-circle on the horizontal axis in MATLABs & How to shade half the cirlce?
3 views (last 30 days)
Show older comments
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.
0 Comments
Answers (2)
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
0 Comments
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!