How to get comlex root of an equation using fminbnd?

조회 수: 3 (최근 30일)
Sina Jafari Ghalekohneh
Sina Jafari Ghalekohneh 2023년 2월 1일
편집: Matt J 2023년 2월 1일
I am trying to solve an equation using fminbnd. I need the complex answers of the equation but fminbnd only gives me the real part. Is there any way to force the fminbnd to give the comlex roots of the equation? I apprecite it if anyone could help me on this!

답변 (2개)

Tushar Behera
Tushar Behera 2023년 2월 1일
Hi Sina,
I believe you want to find the minimum of a function in the complex plane.
The function "fminbnd" is not suitable for such a task, you can use heuristic algorithms such as genetic algorithm or particle swarm optimization for such a task. Apart from that the following Matlab answer also sheds some light on this particular problem,
I hope this resolves your query.
Regards,
Tushar

Matt J
Matt J 2023년 2월 1일
편집: Matt J 2023년 2월 1일
fminbnd is for minimzing over a 1D interval. It's not clear to me how you are defining 1D interval bounds for a number that does not live on the real axis.
If you move to fminsearch, you can make it work by redefining your objective function fun() to work with the real and imaginary parts of the complex number as if they formed a 2D vector:
fun=@(x) fun( complex(x(1), x(2)) );
xopt = fminsearch(fun, [real(x0), imag(x0)])
xopt=complex(xopt(1),xopt(2));

카테고리

Help CenterFile Exchange에서 Solver Outputs and Iterative Display에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by