Clear Filters
Clear Filters

Simulink

1 view (last 30 days)
asha jyothi
asha jyothi on 31 Mar 2012
How can i multiple 's' to the gain(K) in feedback of my block diagram? I get the value of gain(K) from GUI window.
  1 Comment
TAB
TAB on 3 Apr 2012
Plaese explore your question. It has very less information.

Sign in to comment.

Answers (1)

K E
K E on 2 Apr 2012
The set_param function can be used to set a value such as a gain. Here is an example. The gain value supplied to set_param must be a string, not a number.
for iGain = 1:length(listOfGainValues)
strGain = num2str(listOfGainValues(iGain)) ;
set_param('yourModel/yourBlock/Gain', 'Gain', strGain) ;
% Run your simulation here with this gain value
end
  2 Comments
asha jyothi
asha jyothi on 2 Apr 2012
thanks for your reply.
basically, my question is not about using the gain from code. but its about how can i multiply 's' to the gain(k) in simulink.
K E
K E on 3 Apr 2012
Can you please explain? Do you want your GUI to increase the gain prior to simulation, or do you want to add a block that increases the gain by a factor of s during the simulation, or...?

Sign in to comment.

Categories

Find more on Modeling in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!