hi all,
first of all, I am quite new to optimization problems and their programming, so I apologize for any possible lack of clarity.
I would like to calculate coeffincients x(i)'s, as much as possibe close to d(i)'s, such that a weighted sum of x(i) is equal to a known value.
min f((x(i),d(i))
s.t. sum(y(i)x(i))=Y
s.t. y(i)x(i) >=0
s.t. y(i)x(i)<=c*z(i)
where f(.) would be a distance function summarizing the distances between x(i) and d(i), e.g a quadratic function (suggestions are welcome).
y(i),Y,,c,z(i),d(i) are known values
In other terms it is a calibration problem with the addition of inequality constraints.
These values are stored in a sas dataset, and i would like the procedure to add the x(i)'s to the dataset.
A second issue is to repeat the algorithm for a number of groups. So a solution with a by processing would be much appreciated.
a group may have up to 200000 observations.
I can use SAS-OR or sas IML. I would prefer the first choice in order to learn a new tool.
thank you very much in advance