added plot generation script
This commit is contained in:
parent
ed65dad45f
commit
603a100946
24
plots/gen_plots.zsh
Executable file
24
plots/gen_plots.zsh
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/zsh
|
||||||
|
|
||||||
|
ROOTDIR=$HOME/src/research/plots
|
||||||
|
FIGDIR=$HOME/src/thesis/figures/results/
|
||||||
|
|
||||||
|
DIRS=(\
|
||||||
|
resolution \
|
||||||
|
scalability \
|
||||||
|
timing \
|
||||||
|
timing/2D \
|
||||||
|
timing/3D \
|
||||||
|
rms/2D \
|
||||||
|
rms/3D \
|
||||||
|
truthiness/2D \
|
||||||
|
truthiness/3D \
|
||||||
|
)
|
||||||
|
|
||||||
|
for dir in $DIRS
|
||||||
|
do
|
||||||
|
cd $dir && gnuplot *.plt
|
||||||
|
cd $ROOTDIR
|
||||||
|
done
|
||||||
|
|
||||||
|
mv -v $(find | grep eps$) $FIGDIR
|
Loading…
Reference in New Issue
Block a user