How to achieve non-repeatable randomization in Stateflow?

18 vues (au cours des 30 derniers jours)
Wilfred
Wilfred le 23 Jan 2013
Commenté : Karen le 5 Août 2014
In R2012b I created a Stateflow chart (Matlab syntax) containing several random function calls ( rand(1,1), randn(1,1) and randi(n,1)) to model uncertainties. This works well, but each time I run a simulation, it returns exactly the same results because by default the random generator resets itself before each simulation. This is not what I want: I want to have different results every time. The Matlab function rng('shuffle') seems to be exactly what I need but it isn't compatible with Stateflow or Simulink. Typing rng('shuffle') in the Matlab command window before each simulation run doesn't work either. The only option I seem to have is to use input from Simulink Random Source blocks because they have a 'repeatability' setting. Random sources may relatively easily replace rand(1,1) or randn(1,1), but not randi(n,1). Is there a more elegant solution - preferably a way to prevent resetting of the random generator?

Réponse acceptée

Wilfred
Wilfred le 26 Jan 2013
Thanks for your suggestions. Actually I want non-repeatability for simulation runs within one session, OTOH non-repeatability for each session might come in handy if Matlab crashes in between... I wanted to avoid Simulink input for random numbers altogether but if that's not possible, the Random Source block turns out to do the job quite well if I set its 'repeatability' to 'non-repeatable'. I don't know what'll happen between sessions - so far Matlab hasn't crashed between simulation runs - I have to keep my fingers crossed.
  1 commentaire
Karen
Karen le 5 Août 2014
Hi,
Could you explain how do you set the block to be 'non-repetable'? Are you using the block from DSp system? I can't change the repeatability in the one from Simulink. Thanks!

Connectez-vous pour commenter.

Plus de réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 23 Jan 2013
Modifié(e) : Azzi Abdelmalek le 23 Jan 2013
You can use a random source u, then in your chart add
n=12
ceil(u*n)
%it's the same as randi(n)
  6 commentaires
Walter Roberson
Walter Roberson le 24 Jan 2013
Is randi() a true random number generator? I don't think so. It is the pseudo-random number generator, and it is going to be working off of whatever random number seed is in effect right then. Which, for the first run after loading, is going to have been set by the default random number seeding in MATLAB, which uses the same value each time (not based upon time or anything like that.) And if you quit and re-enter and re-run then that session will have the default seed, so randi(100) is going to generate exactly the same number as your previous run. Thus you are going to get exactly the same seeding for each session, which is what the original poster does not want to have happen. The original poster wants different seeds even for the very first run after starting each session of MATLAB.
Azzi Abdelmalek
Azzi Abdelmalek le 24 Jan 2013
I did'nt read "For each session" in the actual post. It's possible to create a mat file:
sid=ranperm(1000)
save sid_file sid
In the init function
load sid_file
sid1=sid(1)
sid(1)=[]
save sid_file sid
set_param('untitled1/Uniform Random Number','Seed',num2str(sid1))
set_param('untitled1/Uniform Random Number','Minimum','0')
set_param('untitled1/Uniform Random Number','Maximum','100')

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by