Not Enough Input Arguments in fsolve
13 ビュー (過去 30 日間)
古いコメントを表示
Khoirunnisa' Irodatillah
2019 年 3 月 27 日
コメント済み: Khoirunnisa' Irodatillah
2019 年 3 月 27 日
please help to solve and explain why
function f = fun(x)
f(1) = (x(1)-4)^2 +(x(2)-4)^2 - 5;
f(2) = x(1)^2 + x(2)^2 - 16;
options = optimset('display','off')
x = fsolve(@fun,[2 3.5],options)
X = x(1)
Y = x(2)
>> fun()
Not enough input arguments.
Error in fun (line 2)
f(1) = (x(1)-4)^2 +(x(2)-4)^2 - 5;
>>
0 件のコメント
採用された回答
Catalytic
2019 年 3 月 27 日
編集済み: Catalytic
2019 年 3 月 27 日
function myProblem
options = optimset('display','off')
x = fsolve(@fun,[2 3.5],options)
X = x(1)
Y = x(2)
function f = fun(x)
f(1) = (x(1)-4)^2 +(x(2)-4)^2 - 5;
f(2) = x(1)^2 + x(2)^2 - 16;
end
end
Running gives the following result
>> myProblem
x =
1.8058 3.5692
X =
1.8058
Y =
3.5692
3 件のコメント
Catalytic
2019 年 3 月 27 日
As you can now see, fun() is supposed to contain only the code that computes f.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!