How to generate multiple random samples of size 200
古いコメントを表示
I want to generate multiple (say 1000) random samples from the normal distribution each of size 200. How do I achieve that. Thanks!
採用された回答
その他の回答 (1 件)
Viju
2014 年 3 月 19 日
One way to go about this:
x = randn(200,1000);
This generates normally distributed pseudo-random numbers between 0 and 1.
カテゴリ
ヘルプ センター および File Exchange で Multivariate Normal Distribution についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!