simulink random sequence generation
Mostra commenti meno recenti
Hi,
I just created a "Malab function" block in simulink, and it generates random numbers. The problem now is that the sequence repeats whenever I run the simulation. The matlab function block simply looks like this function y=fcn() y=randn;
i know the seed should be reset but not sure how. Thanks
Risposte (3)
Kaustubha Govind
il 20 Giu 2013
0 voti
According to the documentation for randn, you need to use the function rng to control the seed, etc. You may want to look into that.
Shashank Prasanna
il 20 Giu 2013
Modificato: Shashank Prasanna
il 20 Giu 2013
Random numbers in all software are pseudorandom sequence of numbers. As Kaustubha already mentioned you will have to seed your random number generator differently if you don't want reproducibility (Which would be required if you want to run the simulation in the exact same way)
Include the following command at the very beginning of your matlabfunction block:
rng('shuffle')
This will choose a random seed every time.
1 Commento
Kaustubha Govind
il 21 Giu 2013
Amin: Do you plan to generate standalone C/C++ code from your model? If not, you can call the function by declaring it extrinsic as the error suggests:
function y=fcn()
coder.extrinsic('rng');
rng('shuffle');
y=rndn;
Categorie
Scopri di più su Sources in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!