nice hack : set ylabel '\rotatebox{90}{corrected value}'
This commit is contained in:
parent
f9c6b65ca8
commit
33daa84530
@ -1,13 +1,19 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
PI=" 3.141592654 "
|
PI=" 3.141592654 "
|
||||||
OUT="foo.tex"
|
|
||||||
|
OUT="cos01.tex"
|
||||||
|
|
||||||
gnuplot << __EOF__
|
gnuplot << __EOF__
|
||||||
|
|
||||||
set term latex
|
set term latex
|
||||||
set output "$OUT"
|
set output "$OUT"
|
||||||
set title "COS01"
|
set title "COS01"
|
||||||
|
set xlabel "input value"
|
||||||
|
|
||||||
|
set ylabel '\rotatebox{90}{corrected value}'
|
||||||
|
|
||||||
|
set grid
|
||||||
|
|
||||||
plot \
|
plot \
|
||||||
[0:1] [0:1] \
|
[0:1] [0:1] \
|
||||||
@ -16,4 +22,26 @@ plot \
|
|||||||
|
|
||||||
__EOF__
|
__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
|
||||||
|
Loading…
Reference in New Issue
Block a user