Question: %% 1000 samples over uniform distribution [0,1] x = rand(1,1000); %% create corresponding histogram figure; subplot(2,1,1); hist(x); title('Original 1000 Random Draws i.e. y~U(0,1) from F(x)');

%% 1000 samples over uniform distribution [0,1] x = rand(1,1000); %% create corresponding histogram figure; subplot(2,1,1); hist(x); title('Original 1000 Random Draws i.e. y~U(0,1) from F(x)'); %% inverse CDF for exponential R.V. with mean = 5 F_X_inverse = icdf('Exponential', x, 5); %% create corresponding histogram subplot(2,1,2); hist(F_X_inverse); title('x=F^{-1}(y) ') xlabel('x')

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Mathematics Questions!