'X - 2^(-X) = 0'
how can I find the roots of this equation by using graphic method? fplot()

답변 (1개)

James Tursa
James Tursa 2020년 12월 18일
편집: James Tursa 2020년 12월 18일

0 개 추천

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에 대해 자세히 알아보기

태그

질문:

2020년 4월 9일

편집:

2020년 12월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by