欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

笔记——Gnuplot中一些绘图参数的设置

程序员文章站 2022-03-29 21:53:23
...

1.线型(LineType)

设置线条的颜色。

plot sin(x) with lines lt 4
0 1 2 3 4 5 6
黑色

红色

绿色

蓝色

粉色

浅蓝

黄色

 

 

2.点型(PointType)

设置点的形状。

plot sin(x) with lines pt 4
0 1 2 3 4 5 6 7 8 9 10 11 12 13

+

×

*

 

 

 

3.线条宽度(LineWidth)

可以设置为整数或小数。

4.点的大小(PointSize)

可以设置为整数或小数。

plot sin(x) with lines lw 2.5 ps 1.5

5.图样(style)

一共有9种图样。

plot sin(x) with linespoints
plot "throughput" with linespoints lt 0 lw 2 pt 1 ps 1.5       
#绘制throughput,线为黑色,线宽为2,点的形状为“+”,点的大小为1.5
lines points linespoints ……………………
将相邻的点以线条连接 将每一点以一点“样”绘制 同时具有lines 及 points 的功能 ……………………

 

 

 

6.图例(key)

改变显示的图例名称。

plot 'th2_0' title “nodeA”     #将图例显示的名称从“th2_0”改为“nodeA”
相关标签: gnuplot