I started to use Simulink and I have a question about changing a transfer function using matlab for loop.
Let say I have the following problem:
And my goal is that "system" will be equal to:
Basically I want to run 5 Simulink simulations from time = 0 to time = 10 for 5 different transfer functions.
Any help is appreciated. Thank you.
i
is the simulation number, e.g.,i = 1:5
? – Rody Oldenhuis(1 + s*5/i)^i
is the closed-loop transfer function or the "system" transfer function for iterationi
? Also, I wouldn't use an S-Function, it's unnecessarily complicated for something like that. – am304