variable sweep in simulink

18 ビュー (過去 30 日間)
nadav yanay
nadav yanay 2011 年 11 月 13 日
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 件のコメント
Marsia Hossen Konika
Marsia Hossen Konika 2021 年 7 月 5 日
Hi!
How do sweep current and voltage in a simulink model?

サインインしてコメントする。

採用された回答

Thijs
Thijs 2011 年 11 月 13 日
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 件のコメント
Rahul Kumar
Rahul Kumar 2019 年 5 月 15 日
Update: If you are using R2017a or later, the parsim command can be used to set this up very easily.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeModeling についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by