From 581617dca6b33245ebccfd3044b5dea84ac785c0 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Tue, 19 Jan 2021 11:33:16 +0100 Subject: [PATCH 1/1] yrange 0.3 --- gnuplot/template.gnuplot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnuplot/template.gnuplot b/gnuplot/template.gnuplot index b472df4..687df7d 100644 --- a/gnuplot/template.gnuplot +++ b/gnuplot/template.gnuplot @@ -22,7 +22,7 @@ set key outside tmargin center set format x "" #set format y "%.2f" -set yrange [ -0.2 : 0.2 ] +set yrange [ -0.3 : 0.3 ] #set arrow 1 from first,3 to last,3 nohead linestyle rgb "#ff0000" @@ -41,7 +41,7 @@ set linetype 99 lc 'red' #plot "axes.txt" using 1:2 with lines title "X angle", "" using 1:(3) with dots notitle, "" using 1:(-3) with dots notitle set ylabel "X degrees" -plot "axes.txt" using 1:2:(abs($2) < 0.2 ? 1: 99) with lines lc variable notitle +plot "axes.txt" using 1:2:(abs($2) < 0.3 ? 1: 99) with lines lc variable notitle # http://gnuplot-surprising.blogspot.com/2011/09/gnuplot-background-image.html #'/home/dpavlin/zc/www/logo-color.png' binary filetype=png origin=(0,0) dx=0.5 dy=0.5 with rgbimage notitle @@ -51,7 +51,7 @@ plot "axes.txt" using 1:2:(abs($2) < 0.2 ? 1: 99) with lines lc variable notitle set tmargin 0 set ylabel "Y degrees" -plot "axes.txt" using 1:3:(abs($3) < 0.2 ? 2: 99) with lines lc variable notitle +plot "axes.txt" using 1:3:(abs($3) < 0.3 ? 2: 99) with lines lc variable notitle #, "" using 1:(3) with dots notitle, "" using 1:(-3) with dots notitle set tmargin 0 -- 2.20.1