I need, for a simulation, to find the argument (parameters) that maximizes a multivariable function with constraints.
I've seen that scipy.optimize.minimize gives the minimum of a function (and, the maximum of the minus function) of a given function and I can use constraints and bounds. But, reading the doc, I've find out that it returns the minimum value but not the parameter that minimizes it (am I right?)
scipy.optiminize.fmin does give the parameter that minimize the function, but this doesn't accept bounds or contraints.
Looking in numpy, there is a function called argmin but it takes a vector as argument and return the "parameter" that minimizes it.
Is there such a function that, like minimize, accept constraint and, like fmin, return the parameter that minimize the function?
Thanks in advance.