Monte Carlo Simulation to generate 10,000 data from 100 data.

2 vues (au cours des 30 derniers jours)
Ahmad Mujahid bin Turin
Ahmad Mujahid bin Turin le 12 Oct 2019
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?

Réponses (1)

Jeff Miller
Jeff Miller le 13 Oct 2019
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.

Catégories

En savoir plus sur Monte-Carlo dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by