How do I create a random matrix from a normal distribution given the mean and variance (mean = 2 and variance = 8).

19 views (last 30 days)
From a 100x100 random matrix that I have previously created I need to create another random matrix from a normal distribution given the mean and variance (let's say that mean is 2 and variance is 8). Does anyone know how to do this?
  5 Comments

Sign in to comment.

Accepted Answer

Star Strider
Star Strider on 13 Oct 2018
I would just do this:
mu = 2;
vr = 8;
RandomNormalMatrix = mu + sqrt(vr)*randn(100);
See the documentation on the randn (link) function for details.
  3 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Random Number Generation in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!