Simulink Control Design™ - MathWorks

(Tuis.) #1

To mark analysis points, first create an slLinearizer interface.


sllin = slLinearizer('scdcascade');


To add a signal as an analysis point, use the addPoint command, specifying the source
block and port number for the signal.


addPoint(sllin,'scdcascade/C1',1);


If the source block has a single output port, you can omit the port number.


addPoint(sllin,'scdcascade/G2');


For convenience, you can also mark analysis points using the:



  • Name of the signal.


addPoint(sllin,'y2');


  • Combined source block path and port number.


addPoint(sllin,'scdcascade/C1/1')


  • End of the full source block path when unambiguous.


addPoint(sllin,'G1/1')

You can also add permanent openings to an slLinearizer interface using the
addOpening command, and specifying signals in the same way as for addPoint. For


Mark Signals of Interest for Batch Linearization
Free download pdf