Effacer les filtres
Effacer les filtres

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

10 vues (au cours des 30 derniers jours)
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 commentaires
Tai Lopez
Tai Lopez le 14 Oct 2018
Amazing! I'm glad that you're happy now. Is that where you filmed your Despacito?
Star Strider
Star Strider le 14 Oct 2018
@Tai, @Luis —
I do not have any MATLAB garages. What am I doing wrong?

Connectez-vous pour commenter.

Réponse acceptée

Star Strider
Star Strider le 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 commentaires
Tan Nguyen
Tan Nguyen le 8 Avr 2021
Could you tell me how the result changes if we use randn(1000000) in spite of randn(100)?
Thank you,

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Random Number Generation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by