Gnuplot - how can I get a figure with no point on it ? (I want to have only the axes, the title and the x- and y- labels) -
i have create video presenting evolution of quantities functions of time. creating images gnuplot , assemble them make movie. getting trouble generating 2 first images: first image supposed have no point on (it supposed show title of graph, x , y axes , labels of axes) , second 1 supposed have 1 single point on it.
is possible create graph containing no data on gnuplot?
is possible create graph containing 1 single point gnuplot using input file? input file contains:
0 15
thank in advance answers,
julien
to plot empty graph, plot undefined function like
plot nan the main issue here is, autoscaling fails since there no valid points. must give fixed xrange , yrange plot:
set xrange [0:1] set yrange [0:1] plot nan notitle plotting single point works fine using
plot 'file.dat' using 1:2 points you'll warnings saying warning: empty x range [0:0], adjusting [-1:1] , warning: empty y range [15:15], adjusting [14.85:15.15], plot. remove warnings, must again provide fixed xrange , yrange.
Comments
Post a Comment