情节曲线在X轴下 - 修复?

时间:2011-12-17 09:39:08

标签: wolfram-mathematica plot

为什么当我在 Mathematica 8 中输入命令Plot[E^(-x), {x, 0, 2}]时,(2, e^(-2))点位于X轴下?我该如何解决这个问题?

2 个答案:

答案 0 :(得分:10)

Plot[E^(-x), {x, 0, 2}, AxesOrigin -> {0, 0}]

enter image description here

答案 1 :(得分:7)

Heike的答案很好,但这里有另一种选择:

Plot[E^(-x), {x, 0, 2}, PlotRange -> {0, Automatic}]