how to find roots of equation having tan(x) or exp(x)
古いコメントを表示
how to find roots of equation having tan(x) or exp(x)
I know how to calculate roots of polynomial having numerical values but i am stuck with it
採用された回答
その他の回答 (3 件)
Andrei Bobrov
2011 年 10 月 3 日
fzero(@(x)exp(x)+x-10,0)
fzero(@(x)tan(x)-x-.01,0)
fzero(@(x)tan(x)-x-.01,pi)
moonman
2011 年 10 月 3 日
0 投票
1 件のコメント
Wayne King
2011 年 10 月 3 日
then fzero will work as I suggested.
fzero(@(x) exp(x)+x-10,0)
says "Find the zeros of exp(x)+x-10 near 0
カテゴリ
ヘルプ センター および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!