Dynamic-Calibration/utils/YALMIP-master/extras/@lmi/problemclass.m

9 lines
196 B
Mathematica
Raw Normal View History

2019-12-18 11:25:45 +00:00
function p = problemclass(F,h)
% PROBLEMCLASS Derives an optimization object and determines the class
if nargin < 2
h = [];
end
[aux1,aux2,aux3,model] = export(F,h);
p = problemclass(model);