标签: colors gnuplot
是否可以在同一轴上使用不同颜色或样式的抽动。
tics:0,1,1.5,2我希望0和2有色red或bold。
0,1,1.5,2
0
2
red
bold
对于multiplots来说,如果有关于相同测量的图表并且您想在不同的图中标记y或x范围而不会将其重载太多,那将会很棒。我现在的替代方案是明确地在y轴上写出范围,但是对于我的问题,它会更顺畅。我检查了mxtics,但根据我的经验,无法为major和minor抽搐设置不同的颜色。但也许我错过了一些东西。
multiplots
mxtics
major
minor
答案 0 :(得分:1)
以下是我在评论中的意思:
set style arrow 1 nohead linecolor rgb "red" linewidth 2 set xtics pi format "%.0P" set arrow 1 from -1.5*pi,-.38 to -1.5*pi,-.4 as 1 set arrow 2 from 1.5*pi,-.38 to 1.5*pi,-.4 as 1 plot [-4*pi:4*pi] sin(x)/x
产量