getname
Retrieve I/O signal names from MPC plant model
Description
Examples
Create a plant and an MPC object, and then retrieve the names of some input and output signals.
mpcverbosity off; % turn off mpc messages % create plant model plant = rss(4,4,4); % random state space plant.D = 0; % set D matrix to zero % set signals type in plant model plant = setmpcsignals(plant,'MV',1,'MD',3,'UD',4,'MO',1,'UO',[3 4]); % create MPC object mpcobj=mpc(plant,1); % sampling time = 1 second
Get names of input signals.
% get input signal names getname(mpcobj,'input',1) % get name of first input signal ans = 'MV1' getname(mpcobj,'input',2) % get name of second input signal ans = 'MV2' getname(mpcobj,'input',3) % get name of third input signal ans = 'MD1' getname(mpcobj,'input',4) % get name of fourth input signal ans = 'UD1'
Get names of output signals.
% get output signal names getname(mpcobj,'output',1) % get name of first output signal ans = 'MO1' getname(mpcobj,'output',2) % get name of second output signal ans = 'MO2' getname(mpcobj,'output',3) % get name of third output signal ans = 'UO1' getname(mpcobj,'output',4) % get name of fourth output signal ans = 'UO2'
% alternative ways to retrieve names mpcobj.Model.Plant.InputName{2} % second plant input ans = 'MV2' mpcobj.ManipulatedVariables(2).Name % second manipulated variable ans = 'MV2' mpcobj.Model.Plant.InputName{4} % fourth plant input ans = 'UD1' mpcobj.DisturbanceVariables(2).Name % second disturbance variable ans = 'UD1' mpcobj.Model.Plant.OutputName{4} % fourth plant output ans = 'UO2' mpcobj.OutputVariables(4).Name % fourth plant variable name ans = 'UO2'
Note that signals not specified with setmpcsignals are assumed to
be measured inputs (for non-specified inputs) or measured outputs (for non-specified
outputs).
Input Arguments
Model predictive controller, specified as an MPC controller
object. To create an MPC controller, use mpc.
This integer specify that the name of the ith signal needs to be
retrieved.
Signal number to be retrieved.
Example: 2
Output Arguments
This character array is the name of the ith input or output
signal (and it does not affect whether the signal is categorized as a manipulated
variable, measured or unmeasured disturbance, measured or unmeasured output).
For input signals, this is the content of
mpcobj.Model.Plant.InputName{i}, while for output signals, this is
the content of mpcobj.Model.Plant.OutputName{i}.
If the specified signal is a manipulated variable, this field is typically
'MV1', 'MV2', and so on, up to the number of
manipulated variables, unless specifically set otherwise. This is also identical to the
content of the Name field of the corresponding structure in
mpcobj.ManipulatedVariables.
If the specified signal is a disturbance input, this field is typically
'MD1', 'MD2', and so on, up to the number of
measured disturbance variables, or 'UD1', 'UD2',
and so on, up to the number of unmeasured disturbance variables, unless specifically set
otherwise. This is also the content of the corresponding Name field
of mpcobj.DisturbanceVariables.
If the specified signal is an output signal, this field is typically
'MO1', 'MO2', and so on, up to the number of
measured output variables, or 'UO1', 'UO2', and so
on, up to the number of unmeasured output variables, unless specifically set otherwise.
This is also the content of the corresponding Name field of
mpcobj.OutputVariables.
Version History
Introduced before R2006a
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Seleccione un país/idioma
Seleccione un país/idioma para obtener contenido traducido, si está disponible, y ver eventos y ofertas de productos y servicios locales. Según su ubicación geográfica, recomendamos que seleccione: .
También puede seleccionar uno de estos países/idiomas:
Cómo obtener el mejor rendimiento
Seleccione China (en idioma chino o inglés) para obtener el mejor rendimiento. Los sitios web de otros países no están optimizados para ser accedidos desde su ubicación geográfica.
América
- América Latina (Español)
- Canada (English)
- United States (English)
Europa
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)