Reputation: 1
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
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 meansigma
is the standard deviation.More detail please help normrnd
in MATLAB.
Upvotes: 0