Added support to plot measurement data
Added support to plot measurement results, as well as some updates to the default style.
This commit is contained in:
parent
910f7743b1
commit
852f4cad1d
7 changed files with 176 additions and 30 deletions
20
runParse.sh
Executable file
20
runParse.sh
Executable file
|
@ -0,0 +1,20 @@
|
|||
#!/bin/bash
|
||||
|
||||
MAX_JOBS=4
|
||||
|
||||
for n in $(seq 1 4); do
|
||||
while [[ $MAX_JOBS -le $(jobs -l | wc -l) ]]; do sleep 0.1; done
|
||||
echo " start $n →"
|
||||
( ./parsePy.py -rq -n $n 1>/dev/null ) &
|
||||
while [[ $MAX_JOBS -le $(jobs -l | wc -l) ]]; do sleep 0.1; done
|
||||
( ./parsePy.py -rpq -n $n 1>/dev/null ) &
|
||||
while [[ $MAX_JOBS -le $(jobs -l | wc -l) ]]; do sleep 0.1; done
|
||||
( ./parsePy.py -sq -n $n 1>/dev/null ) &
|
||||
while [[ $MAX_JOBS -le $(jobs -l | wc -l) ]]; do sleep 0.1; done
|
||||
( ./parsePy.py -spq -n $n 1>/dev/null ) &
|
||||
done
|
||||
|
||||
while [[ $(jobs -lr | wc -l) -gt 0 ]]; do sleep 0.1; done
|
||||
SELECT_STRING="S02bB_C+03dB"
|
||||
rsync -aPv "figures-measured/"*"${SELECT_STRING}"* ../tex/figures-measured/
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue