Hello everyone,
I would like to initialize the values of my parameters x1 and x2, by picking them from a table. My table nr has two variables x1 and x2, with one value for each.
My objective function is a function that I have defined in a previous proc fcmp.
proc nlp tech=NEWRAP invar=two(type=PARMS) gradcheck=detail gconv2=1e12 ;
min f;
decvar x1 x2;
f = (1-x1)*2+100(x2-x1*2)*2;
run;
Thanks!