Graph Method Root Finding
古いコメントを表示
'X - 2^(-X) = 0'
how can I find the roots of this equation by using graphic method? fplot()
回答 (1 件)
James Tursa
2020 年 12 月 18 日
編集済み: James Tursa
2020 年 12 月 18 日
E.g.,
x = -1:0.01:1; % pick some x range to look for a root
plot(x,x-2.^(-x)) % plot the equation
grid on
or
fplot(@(x)x-2.^(-x));
grid on
Then zoom in on the 0 crossing.
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!