Examples
Sensitivity Function at Analysis Point
For the ex_scd_simple_fdbk model, obtain the sensitivity at the plant input, u.
Open the ex_scd_simple_fdbk model.
mdl = 'ex_scd_simple_fdbk';
open_system(mdl);
In this model:
Create an slLinearizer interface for the model.
sllin = slLinearizer(mdl);
To obtain the sensitivity at the plant input, u, add u as an analysis point to sllin.
addPoint(sllin,'u');
Obtain the sensitivity at the plant input, u.
sys = getSensitivity(sllin,'u');
tf(sys)
ans =
15 Alphabetical List