Retrieve I/O signal names in MPC prediction model
name = getname(MPCobj,'input',I)
name = getname(MPCobj,'output',I)
name = getname(MPCobj,'input',I)
returns
the name of the I
th input signal in variable name
.
This is equivalent to name = MPCobj.Model.Plant.InputName{I}
.
The name property is equal to the contents of the corresponding Name
field
of MPCobj.DisturbanceVariables
or MPCobj.ManipulatedVariables
.
name = getname(MPCobj,'output',I)
returns
the name of the I
th output signal in variable name
.
This is equivalent to name=MPCobj.Model.Plant.OutputName{I}
.
The name property is equal to the contents of the corresponding Name
field
of MPCobj.OutputVariables
.