Reputation: 1972
I have a blackbox optimization problem, meaning, I have a shared-object file that I can call from within a Matlab
function supplying it with input variable x
and I can get the objective value obj
as well as constraint-violations cv
. The following can be noted :
x
is a vector of known length with known boundsobj
is a scalar valuecv
is a vector of known lengthThere is no information available on type of constraints. Can use fmincon
to solve this optimization problem.
P.S : I already have a good starting point.
Upvotes: 0
Views: 282