gnuplot - 在多图模式下用鼠标旋转 3D 图

标签 gnuplot

当我在 gnuplot 中执行以下操作时 ...

set terminal x11
splot sin(x)

我可以用鼠标旋转 3d 图

另一方面,如果我执行以下操作

set terminal x11
set multiplot layout 1,2
splot sin(x)
splot cos(x)

我不能旋转 sin(x) 或 cos(x),尽管我很想这样做。有谁知道是否可以创建一个可以旋转的多图?

最佳答案

不幸的是你不能。 Ethan A. Merritt,gnuplot 开发人员之一,here解释原因:

Fundamental limitation. The "multiplot" command is best understood as meaning "don't start a new page for the next plot". So your commands have created two separate plots, that just happen to be on the same page. Gnuplot only tracks the data for one plot at a time, so you can only redraw the most recent plot. All earlier plots are long gone.

关于gnuplot - 在多图模式下用鼠标旋转 3D 图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17507727/

相关文章:

plot - gnuplot 中 'plot' 命令中的“if”语句

graph - gnuplot - 轻微抽动未出现

GNUplot Multiplot - 更改一些图的背景颜色

html - gnuplot 发出警告 : Skipping data file with no valid points

fonts - 带有 Times-Roman 字体的 gnuplot 埃标签

haskell - 将 haskell 点列表转换为可以使用 splot 调用的文件

plot - Gnuplot:多重图和插图

gnuplot - 如何在 gnuplot 中调整automatic-tics-number?

gnuplot - 如何在gnuplot中连接字符串?

gnuplot - 如何从文件中绘制对象(矩形)