normal distribution random sample
显示 更早的评论
I have various points in a 3D space and I want to take a subsample of them according to the normal distribution. I want to take just 100. Do I simple use the command randn(1, 100) or must I first fit the normal distribution to my data to find mu and sigma??
Bran
回答(1 个)
Shashank Prasanna
2013-1-28
0 个投票
I will be able to provide a clearer answer but I am not sure what you mean by "subsample of them according to the normal distribution".
1) If you use randn(1,100) it will generate normal random variables from a standard normal distribution (0 mean, 1 sigma), but this has nothing to do with your data.
2) For your data you will have to fit a distribution and then generate random samples from that distribution.
Depends on what you want, please explain your use-case and what you want to do.
类别
在 帮助中心 和 File Exchange 中查找有关 Triangular Distribution 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!