Random Variable in Parallel Simulation

3 vues (au cours des 30 derniers jours)
Baris Ciftci
Baris Ciftci le 19 Mai 2018
Hi,
In my Simulink model, I have an Embedded MATLAB Function which generates random variables by rand command periodically during the simulation interval. Now, I want to run multiple simulations with parsim command. However, the same random variables are generated in different (multiple) runs of the model. I tried to add rng('shuffle') command into Embedded MATLAB Function, but it gave error saying it is not supported to use 'shuffle' command in Embedded MATLAB Function. Then, I tried to add rng(seed) command in Embedded MATLAB Function. rng(seed) works fine in Embedded MATLAB Function if the seed is a static number (but of course generates the same random variables since the seed integer is the same). However, if I try to change it in each run (by 'From Workspace' block), it again gives error complaining about this matrix value not having a time value etc.
Do you have an advice to have different random variable realizations in Embedded MATLAB Function block in each parsim loop?
Thanks in advance,
Baris

Réponse acceptée

Rahul Kumar
Rahul Kumar le 29 Août 2018
Here is an example to use different random seeds for each simulation
in(1:12) = Simulink.SimulationInput(mdlName);
for idx = 1:numWorkers
in(idx) = in(idx).setPreSimFcn(@(x) PreSimFcnCallback(idx));
end
function PreSimFcnCallback(seed)
rng(seed);
end
Please note that the example above is looping over 'numWorkers' the number of workers in the parallel pool, instead of the number of simulations, since it is sufficient to set the seed only once on each worker.

Plus de réponses (0)

Catégories

En savoir plus sur Manual Performance Optimization dans Help Center et File Exchange

Produits


Version

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by