I am trying to compute the zero of a function using fzero, but the system always says my function must be finite and real. How can I solve that? Thank you!

1 回表示 (過去 30 日間)
I want to find the zero of f(x) = 2(3x+4)(x^3+4x^2-10)/(x^2(3x+8)^2)
Here is the screenshot for the error:

採用された回答

Matt J
Matt J 2021 年 9 月 24 日
編集済み: Matt J 2021 年 9 月 24 日
Clearly, your function is non-finite at x=0. There is a factor of x^2 in its denominator.
Regardless, fzero() is the wrong tool for analyzing a rational function. Just use roots() to get the roots of the numerator polynomial.
r=[roots([1 0 4 -10]).' ,-4/3];
r=real( r( abs(imag(r))<1e-10 ))
r = 1×2
1.5568 -1.3333
And, of course, you must make sure that none of the numerator roots coincide with any denominator roots, but that is obvious here by inspection.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOptimization についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by