How to generate multiple random samples of size 200
Show older comments
I want to generate multiple (say 1000) random samples from the normal distribution each of size 200. How do I achieve that. Thanks!
Accepted Answer
More Answers (1)
Viju
on 19 Mar 2014
One way to go about this:
x = randn(200,1000);
This generates normally distributed pseudo-random numbers between 0 and 1.
Categories
Find more on Multivariate Normal Distribution in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!