'LoadTorque'. You can specify temp_opening as 'Torque' as long as 'Torque' is
not a portion of the signal name for any other analysis point of s.
For example, temp_opening = 'y1m'.
- Cell array of character vectors or string array — Specifies multiple analysis point
names. For example, temp_opening = {'y1m','y2m'}.
mdl_index — Index for linearizations of interest
array of logical values | vector of positive integers
Index for linearizations of interest, specified as:
- Array of logical values — Logical array index of linearizations of interest. Suppose that
you vary two parameters, par1 and par2, and want to extract the linearization for the
combination of par1 > 0.5 and par2 <= 5. Use:
params = s.Parameters;
mdl_index = params(1).Value>0.5 & params(2).Value <= 5;
The expression params(1).Value>0.5 & params(2).Value<5 uses logical
indexing and returns a logical array. This logical array is the same size as
params(1).Value and params(2).Value. Each entry contains the logical
evaluation of the expression for corresponding entries in params(1).Value and
params(2).Value.
- Vector of positive integers — Linear index of linearizations of interest. Suppose that
you vary two parameters, par1 and par2, and want to extract the linearization for the
combination of par1 > 0.5 and par2 <= 5. Use:
params = s.Parameters;
mdl_index = find(params(1).Value>0.5 & params(2).Value <= 5);
The expression params(1).Value>0.5 & params(2).Value<5 returns a logical
array. find returns the linear index of every true entry in the logical array
Output Arguments
linsys — Point-to-point open-loop transfer function
state-space object
Point-to-point open-loop transfer function, returned as described in the following:
15 Alphabetical List