Question

2. Generate a large number of Gaussian distributed random numbers with mean 0 and variance 1. (HINT: use the randn command) a

0 0
Add a comment Improve this question Transcribed image text
Answer #1

MATLAB Code:

close all
clear
clc

x = randn(1,10000);
figure, scatter(1:10000, x), title('Scatter Plot'), grid
xlabel('Sample Index'), ylabel('Sample Value')

figure, hist(x, 1000), title('PDF (Mean = 0, Variance = 1)')
grid
% As can be seen from the pdf, the mean = 0.

var = 9; std = sqrt(var);
mean = 2;
y = std*x + mean; % Generating random numbers with specified mean and variance
figure, hist(y, 1000), title('PDF (Mean = 2, Variance = 9)')
grid

Plots:

Scatter Plot o 00 0 凸。 Semple Index600PDF (Mean 0, Variance 1) 40 35 30 25 20 15 10 4 -3 -2

PDF (Mean2, Variance 9) 40 35 30 25 20 15 10 5 -10 -5 10 15

Add a comment
Know the answer?
Add Answer to:
2. Generate a large number of Gaussian distributed random numbers with mean 0 and variance 1....
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • 5000) of uniformly distributed random numbers between 1 Generate a large number (1000 or and 2...

    5000) of uniformly distributed random numbers between 1 Generate a large number (1000 or and 2 (HINT: use the rand command for generating a uniformly distributed random variable between 0 and 1 and then move it!). b Plot the pdf of the distribution. Use the hist command to obtain the number of samples in a random numbers, define binx as a vector with bins on the x-axis (binx = 1:0.01:2). P histx,binx) will provide you the weights pdf. Compare with...

  • The probability density function (pdf) of a Gaussian random variable is: where μ s the mean...

    The probability density function (pdf) of a Gaussian random variable is: where μ s the mean of the random va nable, and σ is the standard deviation . (1) Please plot the pdf of a Gaussian random variable (the height of an average person in Miami valley) in Matlab, if we know the mean is 5 feet 9 inches, and the standard deviation is 3 inches (2) Please generate a large number of instances of such a Gaussian random variable...

  • Generate N binary random variables Xi, i E {1,2,.., N] where X 1 or -1 with equal probability in ...

    Generate N binary random variables Xi, i E {1,2,.., N] where X 1 or -1 with equal probability in Matlab using rand or randn. According to central limit theorem, i= 1 should follow normal distribution when N is large. (1) Please plot the theoretical pdf of normal distribution (2) Please estimate the pdf of Vv by generating a lot of instances of Vv (hint: use hist command to get histogram then scaleit) (3) Please plot the theoretical pdf and the...

  • Problem 5 of 5Sum of random variables Let Mr(μ, σ2) denote the Gaussian (or normal) pdf with Inea...

    Problem 5 of 5Sum of random variables Let Mr(μ, σ2) denote the Gaussian (or normal) pdf with Inean ,, and variance σ2, namely, fx (x) = exp ( 2-2 . Let X and Y be two i.i.d. random variables distributed as Gaussian with mean 0 and variance 1. Show that Z-XY is again a Gaussian random variable but with mean 0 and variance 2. Show your full proof with integrals. 2. From above, can you derive what will be the...

  • solve with only matlab, please. :) random 15.8 Ifr is a normal random number with mean...

    solve with only matlab, please. :) random 15.8 Ifr is a normal random number with mean 0 and variance 1 (as generated by randn), it can be transformed into a random number X with mean u and standard deviation a by the relation X=ar + In an experiment, a Geiger counter is used to count the radioactive emissions of cobalt 60 over a 10-second period. After a large number of such readings are taken, the count rate is estimated to...

  • Generate 100 Poisson (λ = 2) random numbers using the Inverse transformation method, and then compare...

    Generate 100 Poisson (λ = 2) random numbers using the Inverse transformation method, and then compare with the theoretical mean and variance. please let me know the explanaiton with detail, and r code, If not, at least python

  • yes mean is 1 and variance is 2. 03) Assume that we have a-N (al 1,.2)...

    yes mean is 1 and variance is 2. 03) Assume that we have a-N (al 1,.2) b-N(b11.4) and that a and b are independent. a)What is the pdf0f :-3a+5b ? b) Now suppose that a and b are correlated such that the jointly normal pof is given as Recalculate the pdf of z with the added correlation. c) yse the mvnmdü routine in the Matlab statistical toolbox to generate a m the correlated components of a and b. Verify that...

  • Develop a generator for a random variable whose pdf is F(x) ={ 1/3, 0<=x<=2 1/24, 2<x<=10...

    Develop a generator for a random variable whose pdf is F(x) ={ 1/3, 0<=x<=2 1/24, 2<x<=10 0, otherwise a) Write a computer routine to generate 1000 values. b) Plot a histogram of 1000 generated values. c) Perform goodness-of-fit test to determine whether these generated values fits the theoretical density function given above. Note: Invlude your computer routine for generating random variates in your answer sheet. I need numerical solution

  • Instructions: If you require uniformly distributed random numbers in [0, 1], use Matlab’s built i...

    Instructions: If you require uniformly distributed random numbers in [0, 1], use Matlab’s built in uniform random number generator rand. Also, you may NOT use any Matlab built-in functions that explicitly perform the task asked for in the problem. Problem 6. Let α > 0 and set f(x)- ae-ale, for x e(-oo, oo). (a) Make a plot of f (b) Show that f is a probability density function (Hint: -, when z S 0, and x-r, when 0.) (c) If...

  • pick a number for mean and standard deviation generate 5 random numbers using a normal distribution...

    pick a number for mean and standard deviation generate 5 random numbers using a normal distribution and mean and standard deviation from (i) using your 5 numbers find the mean and the standard deviation of your data How far is your sample mean from your true mean? By 'far' I mean how many sample standard deviations. use the absolute value of distance here Repeat steps 2-4 1000 times. you should now have 1000 measures how far your sample mean is...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT