9 lines
196 B
Mathematica
9 lines
196 B
Mathematica
|
|
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);
|