how can i use mvnrnd function?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi
i have used this function in order to generate gaussian random numbers
this funtion needs to define the mean and mu wich is square matrix my question is how to draw hundreds of values followin gaussian assumption
i upload the photos as aresult of single value and when i try to generate hundreds values i lost the correlation between them any idea please?
0 Kommentare
Antworten (1)
Paul
am 12 Jan. 2022
I'm not exactly sure what the question is.
If the question is: how to draw hundres of samples from the multi-variate normal distribution with a given mean and covariance, then an example is:
mu = [1 2];
Sigma = [1 2;3 4]*[1 2;3 4].';
x = mvnrnd(mu,Sigma,900); % 900 samples
% verify
mu
mean(x)
Sigma
cov(x)
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!