Constrained optimization of a vector

4 visualizaciones (últimos 30 días)
mahdi Izadi
mahdi Izadi el 24 de Mayo de 2022
Comentada: Walter Roberson el 25 de Mayo de 2022
Hi!
I am trying to optimize a vector. I want to find , where ()=0, and .
f_1 and f-2 are two procedural functions, stored in m-files (not straight-forward functions).
How can I do it with a viable (time-effective) algorithm?
Thanks!

Respuesta aceptada

Walter Roberson
Walter Roberson el 24 de Mayo de 2022
Use fmincon. Make the objective f1^2 and use a nonlinear equality constraint with f2.
  4 comentarios
mahdi Izadi
mahdi Izadi el 25 de Mayo de 2022
Dear Walter;
Thanks so much;
Your suggestion makes the work done;
However the algorithm is excrucietinly slow. (My vector has 100 of elements,) It takes 130 seconds roughly and the problem is that it is inside a loop that should work for more that 1000 iterations...
Is it possible to expedite this solver? I tried a better initial guess and it didn't work. I also tried different algorithms , SQP, iterative, ... but no improvement made in the speed.
Best regards
Mahdi
Walter Roberson
Walter Roberson el 25 de Mayo de 2022
It depends what the calculations do. In particular, are there analytic forms of the jacobian? Possibly a sparse form? fmincon needs to estimate the gradient of every variable against every other variable, and if you have hundreds of variables that can get slow.

Iniciar sesión para comentar.

Más respuestas (1)

Matt J
Matt J el 24 de Mayo de 2022
Editada: Matt J el 24 de Mayo de 2022
You have two equations so, as long as numel(a)=2 and f1 and f2 are differentiable, you can use fsolve. If numel(a)>2 then you have more unknowns than equations and the problem is ill-posed.
  1 comentario
mahdi Izadi
mahdi Izadi el 25 de Mayo de 2022
Dear Matt;
Thanks;
I believe I explained a bit unclear. The problem is somehow OK, as I think the solution proposed above adressed this problem.

Iniciar sesión para comentar.

Categorías

Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.

Productos


Versión

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by