我有以下正态分布,我需要在y轴上将图形图设置为1.5。
x = -.5:0.0001:3.5;
m1 = 1;
s1 = 0.5;
pdfNormal_1 = normpdf(x, m1, s1);
ylim([0 1.5])
set(gcf,'color','w');
plot(x, pdfNormal_1)%, x, pdfNormal_2);
有人可以告诉我该怎么做?此致
答案 0 :(得分:5)
axis
功能是您需要的功能。
您可以使用
将轴设置为所需的值axis([xmin xmax ymin ymax])
或者您可以使用它来执行以下操作:
axis equal
axis tight
axis off
等
转到文档了解更多信息:
http://www.mathworks.co.uk/help/matlab/ref/axis.html?refresh=true
答案 1 :(得分:2)
试试这个,
x = -.5:0.0001:3.5;
m1 = 1;
s1 = 0.5;
pdfNormal_1 = normpdf(x, m1, s1);
set(gcf,'color','w');
plot(x, pdfNormal_1)%, x, pdfNormal_2);
ylim([0 1.5])