Revision cf2e1ca869ec3a8a8961fcf5b276d4419810089a (click the page title to view the current version)

Handling/CompAlgSystems4Golem/gnuplot/index

Changes from cf2e1ca869ec3a8a8961fcf5b276d4419810089a to b7c6765b0b125f9afd834d87ef5d534736793fe9

---
format:markdown
...
 



# Linux command line operated 


<table>
<tr><td span=2>One signal</td></tr>
<tr><td>

~~~
shot_no_a=33993;ylabel='U_l [V]';Golem_path=https://golem.fjfi.cvut.cz/shots/;signal_id=DASs/StandardDAS/LoopVoltageCoil_raw.csv;\
gnuplot -p -e "
set title 'Golem #`wget -q -O - $Golem_path/$shot_no_a/shot_no`';set datafile separator ',';set xlabel 't [s]';set ylabel '$ylabel';
plot '< wget -q -O - $Golem_path/$shot_no_a/$signal_id' w l t '$ylabel\@$shot_no_a'"
#Hint: copy and paste it to the linux terminal
~~~~

</td><td><img src="/Handling/CompAlgSystems4Golem/gnuplot/Demos/33993/Ul/CommandLine/OneSignal.png"></img></td></tr>
<tr><td span=2>Two signals</td></tr>
<tr><td>

~~~
shot_no_a=33993;shot_no_b=33995;ylabel='U_l [V]';Golem_path=https://golem.fjfi.cvut.cz/shots/;signal_id=DASs/StandardDAS/LoopVoltageCoil_raw.csv;gnuplot -p -e "
set title 'Golem #`wget -q -O - $Golem_path/$shot_no_a/shot_no` vs. #`wget -q -O - $Golem_path/$shot_no_b/shot_no`';set datafile separator ',';set xlabel 't [s]';set ylabel '$ylabel';
plot '< wget -q -O - $Golem_path/$shot_no_a/$signal_id' w l t '$ylabel\@$shot_no_a','< wget -q -O - $Golem_path/$shot_no_b/$signal_id' w l t '$ylabel\@$shot_no_b'"

~~~~
</td><td><img src="/Handling/CompAlgSystems4Golem/gnuplot/Demos/33993/Ul/CommandLine/Screenshot.png"></img></td></tr>

</td><td><img src="/Handling/CompAlgSystems4Golem/gnuplot/Demos/33993/Ul/CommandLine/TwoSignals.png"></img></td></tr>
<tr><td span=2>Two signals</td></tr>
<tr><td>

</table>