image thumbnail
from New ODE and DAE Solver by John Hedengren
Differential and algebraic equation solver for high-index, stiff, and mixed-integer systems.

apm_info(server,app,class,name)
% APM Variable Classification
% class = FV, MV, SV, CV
%   F or FV = Fixed value - parameter may change to a new value every cycle
%   M or MV = Manipulated variable - independent variable over time horizon
%   S or SV = State variable - model variable for viewing
%   C or CV = Controlled variable - model variable for control
function response = apm_info(server,app,class,name)
   aline = ['info ' deblank(char(class)) ', ' deblank(char(name))];
   response = apm(server,app,aline);

Contact us