This shows you the differences between two versions of the page.
isrm:laboratoare:02 [2018/01/19 18:25] dragos.niculescu |
isrm:laboratoare:02 [2019/02/28 20:45] (current) mbarbulescu |
||
---|---|---|---|
Line 160: | Line 160: | ||
<code gnuplot> | <code gnuplot> | ||
set yrange [ 0:120 ] | set yrange [ 0:120 ] | ||
- | plot 'battery.dat' using 1:($2*1000):($4*1000)\ | + | plot 'battery.dat' using 1:($2*1000):($3*1000)\ |
w yerrorbars ls 1 | w yerrorbars ls 1 | ||
</code> | </code> | ||
Line 175: | Line 175: | ||
# Curba teoretică | # Curba teoretică | ||
P(x) = 1.53**2 * x/(5.67 + x)**2 * 1000 | P(x) = 1.53**2 * x/(5.67 + x)**2 * 1000 | ||
- | plot 'battery.dat' using 1:($2*1000):($4*1000) \ | + | plot 'battery.dat' using 1:($2*1000):($3*1000) \ |
title "Power" w yerr ls 2 , \ | title "Power" w yerr ls 2 , \ | ||
P(x) title 'Theory' w lines ls 1 | P(x) title 'Theory' w lines ls 1 |