필터 지우기
필터 지우기

How to shade a portion of a graph

조회 수: 51 (최근 30일)
Kyle Langford
Kyle Langford 2022년 3월 5일
댓글: Kyle Langford 2022년 3월 5일
How can I shade under the curve, and after x=1.25?
x=[-3:.1:3]; %
Y=normpdf(x,0,1);
plot(x,Y,'b')
xlim([-3 3])
ylim([0 0.4])
hold on
index=[1.25:3] %area i want shaded
fill(x,Y,index,'g')

채택된 답변

David Hill
David Hill 2022년 3월 5일
x=[-3:.1:3]; %
Y=normpdf(x,0,1);
plot(x,Y,'b')
xlim([-3 3])
ylim([0 0.4])
hold on
area(x(x>=1.25),Y(x>=1.25),0,'EdgeColor','none','FaceColor','b')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by