I want to solve a minimization problem in MATLAB.
x = fmincon(fun,x0,Aeq,beq, nonlcon)
subjects to the nonlinear inequalities c(x) defined innonlcon
such that c(x) < 0
Is it possible to change c(x) < 0 to c(x) ≤ 0 and use fmincon()
function? Does it have any effect on my obtained results? I tried fmincon
and obtained the reasonable results but I do not know the effect of this change in my results? which function do you suggest to use in MATLAB for this problem?