Estimate the roots of the equation (PLEASE HELP)

4 ビュー (過去 30 日間)
mat lab
mat lab 2017 年 12 月 3 日
回答済み: Dev 2025 年 8 月 19 日
have to find the roots of the equation in the attached image.

回答 (1 件)

Dev
Dev 2025 年 8 月 19 日
To find the roots of the equation provided in the image, we can use “fzero” function available in MATLAB for numerical root finding. I have attached an reference code below on the usage of the same-
root1 = fzero(f, -2); % Try an initial guess near -2
root2 = fzero(f, 0); % Try an initial guess near 0
Here, “f” is our equation for which the roots are required and needs to be defined explicitly before using “fzero” using mathematical operators.
For more details on the usage of “fzero” function, please refer to the documentation link below-
I hope this resolves the query.

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by