How can I write a self scaling function for fmincon ?
Mostrar comentarios más antiguos
Hey,
I use fmincon and I want to maximize this function =
fun = @(x) -(x(1)*x(2)*x(3))
and now I do not want to change this function everytime I in- or decrease the size of my optimization.
For example:
If I am looking for 6 solutions my function should look like this =
fun = @(x) -(x(1)*x(2)*x(3)*x(4)*x(5)*x(6))
Is there a way to do it automatically ?
Thank you so much!
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 28 de Nov. de 2018
1 voto
@(X) -prod(X)
Categorías
Más información sobre Set Optimization Options en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!