为什么当我更改范围时绘图会发生变化?
Why is the plot changing when I change the range?
cdf[s_] := Piecewise[{{1 - (10/s), s > 10}}]
Plot[cdf[s], {s, 0, 20}]
它绘制正确。
correct graph
当我将范围修改为时,说
Plot[cdf[s], {s, 0, 200}]
它绘制不正确。
incorrect graph
这是预期的行为吗?我是不是误会了什么?
我玩过不同的范围。该图在 180 左右时正确显示,然后开始显示不正确。
情节改变是因为PlotRange
改变了。
尝试添加,例如 PlotRange -> All
请参阅 https://reference.wolfram.com/language/ref/PlotRange.html
处的文档
cdf[s_] := Piecewise[{{1 - (10/s), s > 10}}]
Plot[cdf[s], {s, 0, 20}]
它绘制正确。
correct graph
当我将范围修改为时,说
Plot[cdf[s], {s, 0, 200}]
它绘制不正确。
incorrect graph
这是预期的行为吗?我是不是误会了什么?
我玩过不同的范围。该图在 180 左右时正确显示,然后开始显示不正确。
情节改变是因为PlotRange
改变了。
尝试添加,例如 PlotRange -> All
请参阅 https://reference.wolfram.com/language/ref/PlotRange.html
处的文档