problem with fzero in my code

1 回表示 (過去 30 日間)
Hanna Sundling
Hanna Sundling 2019 年 10 月 14 日
コメント済み: Walter Roberson 2019 年 10 月 15 日
fzero won´t work, anyone knows what may be the problem?
Skärmavbild 2019-10-14 kl. 08.29.30.png
  1 件のコメント
Hanna Sundling
Hanna Sundling 2019 年 10 月 14 日
This is the error message I get
Skärmavbild 2019-10-14 kl. 08.31.51.png

サインインしてコメントする。

回答 (2 件)

Fabio Freschi
Fabio Freschi 2019 年 10 月 14 日
your fun is neither acceppting nor using inputs
You should write the symbolic function like this
fun = @(x)cos(x);
x0 = fzero(fun,0.5);
  8 件のコメント
Hanna Sundling
Hanna Sundling 2019 年 10 月 14 日
I am also going to find how many tangents lines that goes torugh the origin for cosx and that is why I talk abot xsinx in my comments.
Walter Roberson
Walter Roberson 2019 年 10 月 15 日
I do not understand what tangent lines through the origin for cosx has to do with xsinx ? Tangent lines to cosx would have to do with sinx not xsinx .

サインインしてコメントする。


Ekemini Stephen
Ekemini Stephen 2019 年 10 月 14 日
Create a function file and save it to the same dierctory as
function y = f(x)
y = cos(x);
end
Then use this function in the section of your script as
%%
fun = @f; % function
x0 = 0.5; % initial point
ff = fzero(fun,x0);

カテゴリ

Help Center および File ExchangeNumerical Integration and Differentiation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by