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!