首先,需要明白Poisson密度函数是什么,如下:
则下面给出该函数的MATLAB代码实现:
clc,clear; clf; x=0:60; lambda=2; y = poisspdf(x,lambda); plot(x,y,'k.-') grid on
结果为: