Mathematica 中的缩放轴
我确信这是一个非常简单的问题,但我最近开始使用 Mathematica,所以这对我来说是全新的。如何缩放 y 轴?我尝试以下但无法编译。
Plot[y = {Exp[-(x^2+3x+2)]}, {x, 0, 5}, {y, 0, 1}]
I'm sure this is an incredibly simple question but I've recently started using Mathematica so it's all new to me. How do you scale the y axis? I try the following but it won't compile.
Plot[y = {Exp[-(x^2+3x+2)]}, {x, 0, 5}, {y, 0, 1}]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PlotRange 选项就是您要寻找的。
绘图[-x^2+3x+2, {x,0,5}, PlotRange->{0,1}]
The PlotRange option is what you are looking for.
Plot[-x^2+3x+2, {x,0,5}, PlotRange->{0,1}]