wouaou, what a nicer documentation

This commit is contained in:
2020-02-20 00:07:03 +01:00
parent b5fa68864a
commit a78d6c2a75
3 changed files with 92 additions and 51 deletions

19
doc/mkgraf.sh Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
PI=" 3.141592654 "
OUT="foo.tex"
gnuplot << __EOF__
set term latex
set output "$OUT"
set title "COS010"
plot \
[0:1] [0:1] \
(0.5 - 0.5 * cos(x*$PI)) \
with line
__EOF__
wc $OUT