Monte Carlo Simulation to generate 10,000 data from 100 data.
3 次查看(过去 30 天)
显示 更早的评论
Hey there. I have a set of data. I've been told to do a Monte Carlo Simulation to make the data more. My data set has 100 data, I want to generate it to 10,000. Can Monte Carlo Simulation do that? If yes, what should I do first?
0 个评论
回答(1 个)
Jeff Miller
2019-10-13
Here is one way:
originalSample = rand(100,1); % You have your own original sample. This is some fake data to use instead for this example.
expandedSample = datasample(originalSample,10000);
Depending on exactly what you are doing, you might also be interested in looking at some of the functions for bootstrapping.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Monte-Carlo 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!