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

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -