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!