-
Notifications
You must be signed in to change notification settings - Fork 0
/
acumauto01.sh
executable file
·60 lines (46 loc) · 1.15 KB
/
acumauto01.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
#!/bin/bash
## programa que checa que histogramador01.cpp este en regla y despues
## hace un histograma bonito en gnuplot.
if [ -z $1 ]
then
echo "Voy a usar el archivo acumulable.dat por default"
else
cp $1 acumulable.dat
fi
if [ -z $2 ]
then
echo "Voy a usar el nombre de tu archivo con diversas terminaciones por default"
Auxiliar=$(basename $1 .dat)
else
OutName=$2
fi
# make -f /home/karel/bashscripts/makefile histogramatic.x
NameDatPA=$Auxiliar"_probas.dat"
Nameestadistica=$Auxiliar"_estadistica.txt"
Nametex=$Auxiliar"-plot.tex"
#Namepdf=$Auxiliar"-plot.pdf"
#asegurate que no hay blank lines
#sed -i '/^$/d' acumulable.dat
#take toooo long, better be carefull with the data
##El sin armadillo es mejor
acumulador01.x
mv probabilidades.dat $NameDatPA
mv estadistica.dat $Nameestadistica
# de momento sinplots
#gnuplot<<EOF
#set xlabel "time"
#set ylabel "P(t)"
#set xr [-0.001:]
#set auto
#set log y
#set grid
#unset key
#set term cairolatex pdf standalone size 16.18cm, 10cm color crop lw 3
#set out "$Nametex"
#set sty dat lines
#plot "$NameDat" usi 1:2 lw 3
#set out
#EOF
#pdflatex $Nametex
#mupdf $Namepdf &
echo "Fat bastard"