필터 지우기
필터 지우기

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

조회 수: 10 (최근 30일)
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
Tai Lopez
Tai Lopez 2018년 10월 14일
Amazing! I'm glad that you're happy now. Is that where you filmed your Despacito?
Star Strider
Star Strider 2018년 10월 14일
@Tai, @Luis —
I do not have any MATLAB garages. What am I doing wrong?

댓글을 달려면 로그인하십시오.

채택된 답변

Star Strider
Star Strider 2018년 10월 13일
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
Tan Nguyen
Tan Nguyen 2021년 4월 8일
Could you tell me how the result changes if we use randn(1000000) in spite of randn(100)?
Thank you,

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Random Number Generation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by