mathematica中用plot画图,纵坐标值太大,横坐标值太小,以至于画出来的图形和y轴重合了了,谁能帮我看看怎么修改
望采纳
在 Mathematica 中,可以使用 PlotRange 参数来控制图表的坐标范围。您可以通过在 Plot 函数中添加 PlotRange 选项来指定纵坐标范围。例如,如果您想要将纵坐标范围设置为 0 到 100,您可以这样使用 PlotRange 选项:
Plot[f[x], {x, 0, 1}, PlotRange -> {0, 100}]
同样,也可以使用 PlotRange 选项来指定横坐标范围。例如,如果您想要将横坐标范围设置为 -5 到 5,您可以这样使用 PlotRange 选项:
Plot[f[x], {x, 0, 1}, PlotRange -> {{-5, 5}, Automatic}]
要么等比例缩小纵坐标
要么将纵坐标改为对数坐标