Home > sp > manypoissonunif.m

manypoissonunif

PURPOSE ^

manypoissonunif.m generates many outcomes of a Poisson number of iid uniform variables

SYNOPSIS ^

This is a script file.

DESCRIPTION ^

  manypoissonunif.m generates many outcomes of a Poisson number of iid uniform variables

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 %  manypoissonunif.m generates many outcomes of a Poisson number of iid uniform variables
0002 
0003 num=16;
0004 for v=1:num,
0005   subplot(num,1,v);
0006   n = poissrnd(30);
0007   uniform;
0008   axis off;
0009 end
0010 
0011 subplot(num,1,1);
0012 title('Arrival times of the Poisson process with 30 arrivals on average')

Generated on Mon 17-Mar-2008 10:33:42 by m2html © 2003