variable sweep in simulink
14 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
nadav yanay
il 13 Nov 2011
Commentato: Marsia Hossen Konika
il 5 Lug 2021
How do I sweep the value of a "gain block" in simulink? can I do a few iterations, each one with different value in the gain block? Thanks
1 Commento
Risposta accettata
Thijs
il 13 Nov 2011
in simulimnk change the name of the gain parameter to for example G. The value for G can then be specified from the workspace. So you can use a for loop like this one:
gain=[1:20];
for n=1:length(gain)
G=gain(n);
run('simulink_model_name')
end
using parfor instead of for can improve performance if you have a multiple core machine.
hope this helps
1 Commento
Rahul Kumar
il 15 Mag 2019
Update: If you are using R2017a or later, the parsim command can be used to set this up very easily.
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!