Maxima 2D 图——如何设置轴相等
例如,绘制 y = x 以使 y 轴和 x 轴具有相同比例的代码是什么?
For example, what is a code for plotting y = x so that y- and x-axis have the same scale ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可以使用 same_xy 选项使轴具有相同的大小:
或者
对于三维图有一个 same_xyz 选项。
The axes can be made the same size using the same_xy option:
or
There is a same_xyz option for three dimensional plots.
默认情况下,Maxima 使用 gnuplot 生成 2d 图形。
如果您使用此默认值,则需要设置
gnuplot_preamble
,例如,请注意
-1
表示 gnuplot 尝试设置比例,以便单位两个轴上的长度相同,而+1
设置纵横比,忽略轴比例。要将此设置为默认值,请键入“
如果您想了解有关 gnuplot 大小选项的更多信息,请从终端运行
gnuplot
”,然后在控制台中键入help set size
。注意:您可以在他们的邮件列表存档中找到有关 Maxima 的大多数基本问题:http://maxima。 sourceforge.net/maximalist.html
Maxima, by default, uses gnuplot to produce 2d graphics.
If you're using this default, then you need to set the
gnuplot_preamble
, e.g.Note the
-1
means that gnuplot tries to set the scales so that the unit has the same length on both axes, while+1
sets the aspect ratio ignoring the axis scales.To make this the default, type
If you want to find out more about the gnuplot size options, run
gnuplot
from your terminal and typehelp set size
into the console.n.b. Most basic questions you can have about Maxima can be found somewhere in their mailing list archive: http://maxima.sourceforge.net/maximalist.html
如果您使用
draw
或draw3d
函数(或其动画版本),则必须将proportional_axes
图形选项作为争论。例如 2D 中的
proportional_axes = xy
。查看更多:
http://maxima.sourceforge.net/docs/manual/de/maxima_42。 html
(搜索“比例轴”。)
If you're using the
draw
ordraw3d
function (or animated versions of those), then you have to pass theproportional_axes
graphic option as an argument.For example
proportional_axes = xy
in 2D.See more:
http://maxima.sourceforge.net/docs/manual/de/maxima_42.html
(Search for "proportional_axes".)