gnuplot使用指南 转
linetype 1: 红色 2:绿色 3:蓝色 4:粉红 5:淡蓝 6:棕色 7:米蓝 8:橙色
pointtype (这里不知道怎么画图只能给大家口头描述了,谁能告诉我怎么在帖子里贴图片?) :1:横线一点 2:横线一叉,3 :横线星子号 4:横线一方块(空心) 5:横线一方块(实心) 6:横线一圆圈(空心) 7:横线一圆圈(实心)8:横线一三角(空心头向上) 9:横线一三角(实心头向上) 10: 横线一三角 (空心头向下) 11: 横线一三角(实心头向下) 12:横线一菱形(空心) 12:横线一菱形(实心)
多张图片画在一张图片上:
>plot "p1" with lines, "p2" with lines
用不同的方式显示图片:
>plot "p1" with linespoints pointtype 4, "p2" with linespoints pointtype 3 (线的不同方式)
>plot "p1" with boxes lt 4(画柱状图)
也可以输出ps图片文件:
>set terminal postscript
>set output "throughput.ps"
>plot "p" with lines
输出eps图片设置:
>set term post enh
>set out "pic.eps"
输出png图片设置:
>set terminal png
>set output "pic.png"
设置网格:
>set grid