Skip to content
Snippets Groups Projects
Select Git revision
  • eb745c7e55a0c35197f85778ee3341d38e5ecfb7
  • master default
  • 1.1
  • 1.0
4 results

eisgenerator_plot

Blame
  • eisgenerator_plot 308 B
    #!/bin/sh
    
    if ! command -v eisgenerator_export &> /dev/null
    then
    	echo "eisgenerator_export is required in \$PATH"
    	exit
    elif ! command -v gnuplot &> /dev/null
    then
    	echo "gnuplot is required in \$PATH"
    	exit
    fi
    
    eisgenerator_export -q $@ | gnuplot -p -e "set datafile separator ','; plot '-' using 2:3 w l"