Main Content

removeAllPoints

Remove all points from list of analysis points in slLinearizer or slTuner interface

Description

removeAllPoints(s) removes all points from the list of analysis points for the slLinearizer or slTuner interface, s. This function does not modify the model associated with s.

example

Examples

collapse all

Create an slLinearizer interface for the scdcascade model. Add analysis points for the r, e1, and y1m signals.

sllin = slLinearizer('scdcascade',{'r','e1','y1m'});

Remove all signals from the list of interface analysis points.

removeAllPoints(sllin);

To verify that all analysis points have been removed, display the contents of sllin, and examine the information about the interface analysis points.

sllin
 
slLinearizer linearization interface for "scdcascade":

No analysis points. Use the addPoint command to add new points.
No permanent openings. Use the addOpening command to add new permanent openings.
Properties with dot notation get/set access:
      Parameters         : [] 
      OperatingPoints    : [] (model initial condition will be used.)
      BlockSubstitutions : []
      Options            : [1x1 linearize.LinearizeOptions]

Input Arguments

collapse all

Interface to a Simulink model, specified as either an slLinearizer interface or an slTuner interface.

More About

collapse all

Version History

Introduced in R2013b