plotting a function correctly

1 view (last 30 days)
N/A
N/A on 27 Oct 2020
Commented: N/Aon 27 Oct 2020
f(x)= exp(-x)-x
The x intercept is between 0 and 1 on other graphing software, yet mat lab incorrectly puts the x intercept after 2. Please correct my code.
x=[-2:0.1:2];
y = exp(-x)-x;
plot(x,y)

Accepted Answer

Sindar
Sindar on 27 Oct 2020
x=[-2:0.1:2];
y = exp(-x)-x;
plot(x,y)
1 Comment
N/A
N/A on 27 Oct 2020
Thank you. lol

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!