使用MATLAB创建几个gamma分布并将它们打印到pdf

时间:2013-08-21 05:47:56

标签: pdf distribution

正如标题已经暗示的那样,我想用不同颜色的不同景观和形状参数绘制几个伽玛分布到一个图上,并将图形保存为pdf。

我已经尝试了一些东西,但我是MATLAB的新手并没有什么真正有用的。

谢谢你

1 个答案:

答案 0 :(得分:0)

试试这个:

figure(1)
hold all
grid on
% For the case of 3 curves:
plot(x1,gamma(x1),x2,gamma(x2),x3,gamma(x3))
xlabel('X Variable [Unit]')
ylabel('Gamma Function [-]')
title('Gamma Function of the three variables x1, x2, x3')
legend('First','Second','Third','location','best')
saveas(figure(1), 'nameofpicture.pdf');

希望它工作正常,我很长时间以来都是Matlab用户,这是一个很好的解决方案: - )

再见

M.L.C。