##// END OF EJS Templates
Se agrega parametro de entrada 'show', por defecto (True) muestra la figuras, caso contrario (False) matplotlib no muestra la figuras
Se agrega parametro de entrada 'show', por defecto (True) muestra la figuras, caso contrario (False) matplotlib no muestra la figuras

File last commit:

r327:3d4af4a59855
r342:de907111a31d
Show More
speedTool.bash
7 lines | 160 B | text/x-sh | BashLexer
Miguel Valdez
Bash para medir testear el tiempo de ejecución y rendimiento del código en python
r327 #!/bin/sh
filename = "testRawData.py"
output = "output"
python -m cProfile -o $output $filename
gprof2dot -f pstats $output.pstats | dot -Tpng -o $output.png