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?

回答(1 个)

Jeff Miller
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.

类别

Help CenterFile Exchange 中查找有关 Monte-Carlo 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by