Does "fsolve" still avaliable for sloving the nonlinear equation?
1 次查看(过去 30 天)
显示 更早的评论
I would like to slove the nonlinear equation above and I use matlab to code below but the command window showed: Undefined function 'fsolve' for input arguments of type 'function_handle'.
How should I use the fsolve function or is there any other way to solve these nonlinear equation?
Thank you very much!
clc; clear;
f=@(x) [2.*x(1)-x(2)-exp(-x(1));-x(1)+2.*x(2)-exp(-x(2))];
fsolve(f,[-5,-5])
0 个评论
采纳的回答
Sulaymon Eshkabilov
2021-5-25
Hi,
In order to employ fsolve() function, you should have optimization toolbox installed in your computer.
fsolve is part of optimization toolbox and thus, you have gotten such an error message.
2 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!