Question: Matlab Let X, Y, Z each be Poisson random variables with parameter A-4 (X,Y Z are independent) Randomly generate N 100000 X-values, repeat for Y
Matlab Let X, Y, Z each be Poisson random variables with parameter A-4 (X,Y Z are independent) Randomly generate N 100000 X-values, repeat for Y and Z Matlab code N=100000; X-poissrnd(4. [N,1]): Let W = Minimum (X,Y,Z) Compute vector W Matlab code W=min(X.min(YZ)); so w = [w] = [min(xi.yi, )] Create a normalized histogram of W. Note: possible values of W range from 0 to To find the largest value simply use: max(W). For simplicity, let Wmax(W) Then to create your graph, try something like >hist(W.nbins);xlim([0 9]) >> nbins-9; >> hist(W.nbins):xlim([0 9]) [ct,binctr]-hist(W.nbins) >bar(binctr.ct/100000);xlim([O 9]) Use your results to estimate P(2 s W S 4)
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
