MATLAB에서 표준 정규 분포의 밀도 함수 곡선을 그리는 방법은 무엇입니까?
x=linspace(-3,3);
y=normpdf(x,0,1);
Figure('color','w ');
plot(x,y,'k');
잠깐만 기다리세요;
fill([x(80:end) x(end ) x(80)],[y(80:end) 0 0],[.5 .5 .5]);
ylim([-.1,.6])
line([-3.5 3.5],[0 0],'color','k');
plot(3.5,0,'k>','markerfacecolor','k' )
line([0 0],[0 .5],'color','k');
plot(0,.5,'k^',' markerfacecolor','k')
축 꺼짐
text(0,-.06,'$R_h-Pnafo_{i,h}$','interpreter','latex ','글꼴 크기',15)
text(2.5,.4,'$\left(1-\Phi\left(\frac{R_h-Pnafo_{i,h}}{\sigma_{ total,h}}\right)\right)$','interpreter','latex','fontsize',15,'horizontalAlignment','center')
annotation('doublearrow',[ .52 .69],[.2 .2],'head1style','plain','head2style','plain');
annotation('arrow',[.8 .71], [.63 .24],'머리 스타일','일반');