-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdfherraduras.sh
executable file
·89 lines (78 loc) · 1.67 KB
/
pdfherraduras.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#Un superherramatico
#! /bin/bash
echo Empecemos a graficar
echo version NO interactiva
#echo nombre para los dibujos.
#read plots
#echo Nombre de los datos
#read n
#echo cuantos bloques?, ya sabes, el cero no cuenta
#read max
plots=_herradura.tex
n=_herdisp.dat
#m=pequelinea01.dat
#el segundo es el marco de fondo
max=24
min=1
echo Vamos a graficar del bloque $min al $max
#echo Nombre del archivo de las etiquetas
#read nomb
#echo que diablos es tu variable dependiente?
#read nomy
echo el archivo de los datos es $n, quedamos peneque,
#echo y vamos a tomar las etiquetas titulares de $nomb .
i=$min
k=0
aguanta='using 1:(-$3)'
lavara='using (-$1):3'
unrato='using (-$1):(-$3)'
while [ $i -le $max ] ; do
let k=$i+100
# nombre=$(sed -n $(echo $k)p $nomb)
outfile=$k$plots
infile=$k$n
echo Haciendo $infile a $outfile
gnuplot <<EOF
unset key
set xr[-8:8]
set yr[-8:8]
set pointsize 0.2
set dat sty lines
set terminal epslatex standalone
set out "$outfile"
set xl "q"
set yl "p"
plot "$infile" using 1:3, "$infile" $aguanta, "$infile" $lavara, "$infile" $unrato
set out
EOF
let i=$i+1
done
# Aqui redefino todo para graficar las comprimidas.
let i=$min
plots=_herracomp.tex
k=0
aguanta=' using 2:(-$3)'
lavara=' using (-$2):3'
unrato=' using (-$2):(-$3)'
while [ $i -le $max ] ; do
let k=$i+100
# nombre=$(sed -n $(echo $k)p $nomb)
outfile=$k$plots
infile=$k$n
echo Haciendo $infile a $outfile
gnuplot <<EOF
unset key
set xr[-1.5:1.5]
set yr[-8:8]
set pointsize 0.2
set dat sty lines
set terminal epslatex standalone
set out "$outfile"
set xl "atanq"
set yl "p"
plot "$infile" using 2:3, "$infile" $aguanta, "$infile" $lavara, "$infile" $unrato
set out
EOF
let i=$i+1
done
fortune -a