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.

enter image description here

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

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -