nice hack : set ylabel '\rotatebox{90}{corrected value}'

This commit is contained in:
tth 2020-02-20 17:11:15 +01:00
parent f9c6b65ca8
commit 33daa84530
1 changed files with 30 additions and 2 deletions

View File

@ -1,13 +1,19 @@
#!/bin/bash
PI=" 3.141592654 "
OUT="foo.tex"
OUT="cos01.tex"
gnuplot << __EOF__
set term latex
set output "$OUT"
set title "COS01"
set xlabel "input value"
set ylabel '\rotatebox{90}{corrected value}'
set grid
plot \
[0:1] [0:1] \
@ -16,4 +22,26 @@ plot \
__EOF__
wc $OUT
wc $OUT
OUT="cos010.tex"
gnuplot << __EOF__
set term latex
set output "$OUT"
set title "COS010"
set xlabel "input value"
set ylabel '\rotatebox{90}{corrected value}'
set grid
plot \
[0:1] [0:1] \
(0.5 - 0.5 * cos(x*$PI*2)) \
with line
__EOF__
wc $OUT