What is the problem here to run this code? Can I run this code without using fsolve?
1 回表示 (過去 30 日間)
古いコメントを表示
function fn=ex_sys_n(x);
fn(1)=exp(-x(1)+x(2))-x(1)^2;
fn(2)=sin(x(1))+cos(x(2));
clc; clear all;
fun=@(x) ex_sys_nl(x);
x0=[0,0];
x=fsolve(fn,x0)
0 件のコメント
採用された回答
Matt J
2022 年 2 月 18 日
x0=[0,0];
x=fsolve(@ex_sys_n,x0)
function fn=ex_sys_n(x);
fn(1)=exp(-x(1)+x(2))-x(1)^2;
fn(2)=sin(x(1))+cos(x(2));
end
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Systems of Nonlinear Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!