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