To mark analysis points, first create an slTuner interface.ST = slTuner('scdcascade');To add a signal as an analysis point, use the addPoint command, specifying the source
block and port number for the signal.addPoint(ST,'scdcascade/C1',1);If the source block has a single output port, you can omit the port number.addPoint(ST,'scdcascade/G2');For convenience, you can also mark analysis points using the:- Name of the signal.
addPoint(ST,'y2');- Combined source block path and port number.
addPoint(ST,'scdcascade/C1/1')- End of the full source block path when unambiguous.
addPoint(ST,'G1/1')You can also add permanent openings to an slLinearizer or slTuner interface using
the addOpening command, and specifying signals in the same way as for addPoint. For2 Linearization