I want to solve a optimization problem where my objective function includes call of a user defined function. Since SAS do not allow us to create a user-defined function I have to use a macro to use it as if it is a function.
I am stating my problem mathematically below:
var x, y;
min z =x**2-x-2*y-x*y+y**2+function(x,y);
solve;
print x y;
function (x,y)=x+y;
Above function is very simple but it is analogous to my function which is very complicated.
So how should I do this kind of optimization in SAS using proc optmodel.
Thanks in advance for your support.
If you have SAS/OR 13.1, this link should help: SAS/OR(R) 13.1 User's Guide: Calling FCMP functions from PROC OPTMODEL
Actually I want to use data step inside the function. And I can't use data step inside fcmp functions
Do the data change in real time? If not, you might be able to load it into PROC OPTMODEL sets and arrays, write an impvar that does the same function evaluation, then use that impvar in your objective.
Yes data changes are required in real time. So loading data at the start of optmodel won't going to work.
Does proc fcmp not let you create your own functions?
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.
Find more tutorials on the SAS Users YouTube channel.