Skip to content
Snippets Groups Projects
Select Git revision
  • 275af63820b5235c78cd662b5cd0467da5381142
  • 5.4 default protected
  • 5.5
  • dev/5.5
  • dev/5.4
  • dev/5.3_downgrade
  • feature/experimenttime_hack
  • 5.3 protected
  • _IntenSelect5.3
  • IntenSelect5.3
  • 4.27 protected
  • 4.26 protected
  • 5.0 protected
  • 4.22 protected
  • 4.21 protected
  • UE5.4-2024.1
  • UE5.4-2024.1-rc1
  • UE5.3-2023.1-rc3
  • UE5.3-2023.1-rc2
  • UE5.3-2023.1-rc
20 results

BP_RWTHVRPawn_Default.uasset

Blame
  • kissplotcsv 559 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
    
    cat "$1" | gnuplot -p -e "\
    set terminal qt enhanced font \",15\" title \"EIS Plot\"; \
    set style line 1 lw 3 lc \"blue\"; \
    set ylabel 'Z_{im}'; \
    set xlabel 'Z_{re}'; \
    set tics font \"Helvetica,12\"; \
    set xlabel font \"Helvetica,15\"; \
    set ylabel font \"Helvetica,15\"; \
    set datafile separator ','; \
    plot '-' using 2:3 notitle w l ls 1;
    "