user1937734
user1937734

Reputation: 1

circularly symmetric Gaussian variables using matlab

any one can help me, i want to generate a matrix with elements being zero mean and unit variance independent and identically distributed (i.i.d.) circularly symmetric Gaussian variables using Matlab any one know the code for this and how to do it

Upvotes: 0

Views: 2196

Answers (1)

argan
argan

Reputation: 61

It is easy to generate a matrix with elements being zero mean and unit variance by using this command in matlab:

normrnd(mu, sigma)
  • mu is the mean
  • sigma is the standard deviation.

More detail please help normrnd in MATLAB.

Upvotes: 0

Related Questions