Borrar filtros
Borrar filtros

Which optimization tool should be used for solving my convex optimization problem?

30 visualizaciones (últimos 30 días)
My optimization problem is convex optimization problem and it is given as follows:
The objective function is given as
And constraints are
The final optimization problem is given as follows:
It is already verify that above optimization probelm is convex . I am using CVX tool to solve the above problem, but not giving accurate values (means that it is solving the problem).
Please suggest proper tool to write a MATLAB code to get the oprimal power values.
In some research papers , authors were saying that Interior point methods can be utilized. How Can I use this in MATLAB to finish above optimization problem?
Should I use CVX tool or any optimization methods to complete the solution for the given formulated problem?
Thanks in Advance!
  5 comentarios
KAGANA SARATH
KAGANA SARATH el 20 de Feb. de 2024
Yes it is not a linear but it is a convex problem.
In the list given, I am using CVX tool with MOSEK solver, But there is a convergence problem using this tool.
Hence, I am looking for another tool like 'fmincon'.
Sir, Can I use 'fmincon' to solve above problem ? Because, this problem includes optimization variables of vectors and complex in nature (How to give initial feasible points for the problem ).
Torsten
Torsten el 20 de Feb. de 2024
In the list given, I am using CVX tool with MOSEK solver, But there is a convergence problem using this tool.
You should first be optimistic about the solver used and search for the problem/error in your problem formulation/coding.

Iniciar sesión para comentar.

Respuestas (2)

William Rose
William Rose el 20 de Feb. de 2024
I agree with @Torsten: try fmincon. It allows you to specify linear and nonlinear equality constraints and inequality constraints. The default algoritrhm is interior point method, but you can specify a different algorithm with optimoptions .

Matt J
Matt J el 20 de Feb. de 2024
Editada: Matt J el 20 de Feb. de 2024
If, as you seem to, you have a non-quadratic (and therefore also nonlinear) convex objective function, then you must use fmincon, regardless of the convexity or non-convexity of your constraints. There is no other solver in the Optimization Toolbox that will handle constrained non-quadratic minimization (except maybe fminimax, but you don't have a minimax problem).
  1 comentario
KAGANA SARATH
KAGANA SARATH el 21 de Feb. de 2024
I will follow your suggestions regarding the optimization toolbox. As I mentioned earlier, already used CVX tool with MOSEK solver.
There are two cases here:
  1. When path loss at reference distance C0 = -30 db, the CVX is unable to solve the problem for lower powers (-30dBm to 30dBm) and works for higher powers but not desirable results.
  2. When path loss at reference distance C0 = -10 db, CVX works for lower power values but not higher powers.
I am unable to decide this scenario, how it is working for specific path loss values (Related large scale fading). If I use fmincon, can I reolsve this issue? Please guide me in this matter.
Another thing is that CVX will not take initial feasible points in the process. If so, that feasible point may lead to optimal solution in the future iterations. As per my knowledge, fmincon will have this initial feasibility facility so that we can have feasible point as optimal values even if it is not working properly.

Iniciar sesión para comentar.

Categorías

Más información sobre Systems of Nonlinear Equations en Help Center y File Exchange.

Productos


Versión

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by