Is there a way to solve complex-valued non-linear equations?
5 次查看(过去 30 天)
显示 更早的评论
Hi guys,
I'm trying to solve a set of complex-valued non-linear equations, but I found that "fsolve" solves only real-valued equations. Is there another function that solves comlpex-valued equations? Or is there any way around it?
Thanks,
0 个评论
采纳的回答
Walter Roberson
2012-5-31
You can use fsolve. Split each complex-valued output into two outputs, the real() and imag().
You can do the same sort of thing for each complex-valued input.
更多回答(1 个)
Hossein
2016-6-10
fsolve in some cases cannot solve the equation. try fzero, fminsearch and fminunc as well. Hopefully, fzero helps you (this function may affect better than others).
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!