作业帮 > 综合 > 作业

matlab中怎么打出泊松分布函数

来源:学生作业帮 编辑:拍题作业网作业帮 分类:综合作业 时间:2024/04/30 04:42:42
matlab中怎么打出泊松分布函数
% 密度函数
Y = poisspdf(X,LAMBDA) returns the Poisson probability density 
    function with parameter LAMBDA at the values in X.
    
% 分布函数
P = poisscdf(X,LAMBDA) computes the Poisson cumulative
    distribution function with parameter LAMBDA at the values in X.