Input perturbation levels, specified as the comma-separated pair consisting of
'NumericalUPert' and an operating point object. This option applies only when
LinearizationAlgorithm is 'numericalpert' or 'numericalpert2'.
To set individual perturbation levels for each input:
(^1) Create an operating point object for the model using the operpoint command.
uPert = operpoint('watertank');
(^2) Set the input values in the operating point object to the perturbation levels.
uPert.Inputs(1).x = 3e-3;
(^3) Set the value of the NumericalUPert option to the operating point object.
opt = linearizeOptions('LinearizationAlgorithm','numericalpert');
opt.NumericalUPert = uPert;
If NumericalUPert is empty, [], the linearization algorithm derives the input
perturbation levels using NumericalPertRel.
Output Arguments
options — Linearization options
linearizeOptions option set
Linearization options, returned as a linearizeOptions option set.
See Also
linearize | linlft | slLinearizer | ulinearize
Introduced in R2013b
linearizeOptions