Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 gnuplot 上使用 pointtype 命令时遇到问题。我尝试了几种方法,例如:
set pt 5 set pointtype 5 plot " " w pt 5 plot " " w pointtype 5
由于某种原因,似乎没有任何效果。我尝试使用“帮助”功能,显然我的 gnuplot 版本没有“pt”或“pointtype”作为选项。这是否可能被列为其他一些功能。我知道点在那里,当我绘制多组数据时,点类型会自动改变,但我无法控制点类型的选择。
任何帮助将不胜感激。
您首先必须告诉 Gnuplot 使用一种使用点的样式,例如with pointsor with linespoints。尝试例如:
with points
with linespoints
plot sin(x) with points
输出:
现在尝试:
plot sin(x) with points pointtype 5
您可能还想查看test显示当前终端功能的命令的输出。以下是我的 pngairo 终端的功能:
test