i am currently trying to minimize a function with linear inequality and equality constraints. The Problem is that fmincon (MATLAB Tool) can not find a feasible solution. I already tried to do everything from the list: http://de.mathworks.com/help/optim/ug/when-the-solver-fails.html
Maybe the problem is too large for fmincon. I have to solve with ~3300 inequality constraints and 1 equality constraint. The function is a scalar function with 9 variables: S = sum((X_i-1)^2)
In addition to that, i have to solve this problem ~3300 times (number of inequality constraints). So i can not wait too long for one minimization.
I do not know if fmincon is not capable of this problem and would like to her suggestions for alternative optimization tools. MATLAB would be perfect (or C/C++). And i can not afford to purchase any software.
I hope you can help me