how can i use mvnrnd function?
4 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Paul
2022 年 1 月 12 日
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 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!