Gnuplot 绘图点大小不变

Gnuplot 绘图点大小不变,gnuplot,Gnuplot,如ps设置中所述,可用于更改绘图的点大小: plot "./points.dat" using 1:2 pt 7 ps 10 # small point size plot "./points.dat" using 1:2 pt 7 ps 100 # large point size 但是,在使用字符点类型时,ps似乎被忽略: plot "./points.dat" using 1:2 pt "X" ps 10 # small point size plot "./poi

ps
设置中所述,可用于更改绘图的点大小:

plot "./points.dat" using 1:2 pt 7 ps 10     # small point size
plot "./points.dat" using 1:2 pt 7 ps 100    # large point size
但是,在使用字符点类型时,
ps
似乎被忽略:

plot "./points.dat" using 1:2 pt "X" ps 10     # small point size
plot "./points.dat" using 1:2 pt "X" ps 100    # small point size
如何更改字符点类型(如
“X”

的点大小请尝试以下操作:

plot '+' u 1:1 w p pt "X" font ",10"
plot '+' u 1:1 w p pt "X" font ",100"