gnuplot - How to label "xtics" at every second points? -
hi plotting graph gnuplot , using below command.
set xrange [0:20] set xtics 0,0.5 the graph , scale correct wanted. label integer points (e.g. 0,1,2,3,4...,20) still want keep tics @ every 0.5 interval.
how can command that? thanks
minor tics set set mxtics:
set xrange [0:20] set xtics 0,1 set mxtics 2 this plots single minor tic between 2 labelled major tics.
if minor , major tics should have same size use
set xtics scale 1,1 
Comments
Post a Comment