필터 지우기
필터 지우기

generating a random variable with a given mean and matrix

조회 수: 3 (최근 30일)
fafz1203
fafz1203 2016년 10월 15일
댓글: Diego Jaramillo 2020년 4월 16일
can any one tell me how to generate a NORMAL DISTRIBUTION random variable X = N(mu,A), where mu is the mean (mu = 0, 0 mean) and A is a p*p IDENTITY MATRIX. Please ask me if the question is unclear. Thanks

채택된 답변

Image Analyst
Image Analyst 2016년 10월 15일
Like this?
numRows = size(A, 1);
A(logical(eye(numRows))) = randn(1, numRows)
  댓글 수: 8
fafz1203
fafz1203 2016년 10월 15일
I'm sorry but it turns out that I was wrong, Here is what I want to do I want to generate a random variable X (X~N(0,A)), that is it has 0 mean and A is a 10*10 covariance matrix which is a 10*10 identity matrix
now what i want to do is I want to generate a 10*1000 random variable X using the above information.
Please help me if you can. Thanks
Image Analyst
Image Analyst 2016년 10월 15일
I don't believe you can do that and have the random variable be random. If it's random, you won't have A=eye(10) for the covariance matrix.

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

추가 답변 (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