fminunc on multiple variables
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I am new to using fminunc and have looked quite a bit into it but couldn't find what I was looking for. If I have a function like: myFun(x,y,z,a,b,c), how can i use fminunc to optimize over x,y and z simlutaneously.
REGARDS
1 comentario
Shivani Chepuri
el 11 de Ag. de 2020
Hi, Can you specify how to write lower and upper bound constraints for x,y,z variables here, using fminunc and fmincon? Also, all x,y,z are vectors. Thanks
Respuestas (2)
Walter Roberson
el 13 de Dic. de 2013
Editada: Walter Roberson
el 13 de Dic. de 2013
@(X) myFun(X(1), X(2), X(3), a, b, c)
4 comentarios
Shivani Chepuri
el 11 de Ag. de 2020
Hi, Can you specify how to write lower and upper bound constraints for x,y,z variables here, using fminunc and fmincon? Also, all x,y,z are vectors. Thanks
Sean de Wolski
el 13 de Dic. de 2013
Objective functions expect all of the variables being optimized to be in "x"
myfun(x,a,b,c)
Where x is now a 1x3 vector. Then inside of myfun:
Use x(1) to refer to the first element, x(2) for y and x(3) for z. To pass in other variables, look at:
4 comentarios
Sean de Wolski
el 16 de Dic. de 2013
So you are basically trying to optimize over n dimensions where n is the total number of elements in all of your matrices.
You can do this the same way Walter and I have suggested: essentially pass in a 1xn vector x and then split it into its matrices etc. inside of the objective function.
Since I would expect fminunc to have trouble with a problem like this due to many local minima and discontinuities, you might want to try using patternsearch in the Global Optimization toolbox. This solver is much better able to handle the above. You might also choose to constrain you search wherever possible. The constraints might not be obvious but some things to think about: are some variables positive? are some within a range? Do some of their value depend on others or for example a row of your matric must sum to x? etc.
Ver también
Categorías
Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!