我是靠谱客的博主 寂寞美女,这篇文章主要介绍matlab中的poisspdf,Poisson probability density function,现在分享给大家,希望可以做个参考。

Compute and plot the Poisson probability density function for the specified range of integer values and average rate.

In the computer hard disk manufacturing process, flaws occur randomly. Assuming that on average a 4 GB hard disk has two flaws, compute the probability that a disk has no flaws.

poisspdf(0,2)

ans = 0.1353

Compute the Poisson probability density function values at each value from 0 to 10. These values correspond to the probabilities that a disk has 0, 1, 2, ..., 10 flaws.

flaws = 0:10;

y = poisspdf(flaws,2);

Plot the resulting probability values.

scatter(flaws,y,'Marker',"o")

grid on

3722a9f60b67522facad89976be49d78.png

最后

以上就是寂寞美女最近收集整理的关于matlab中的poisspdf,Poisson probability density function的全部内容,更多相关matlab中的poisspdf,Poisson内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部