aboutsummaryrefslogtreecommitdiffstats
path: root/plots.gp
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov@twistea.su>2024-10-26 20:03:08 +0300
committerjustanothercatgirl <sotov@twistea.su>2024-10-26 20:03:08 +0300
commit5e81acb1a514231dc704f8e19f1a4c6e06318135 (patch)
treed0137411b2c94e63bee43b3d581fb73558ac3637 /plots.gp
parent52d8f03d0657df15cf0fc320d03aea76d17ae4f8 (diff)
Structurization + 120 and 117 prak
Diffstat (limited to 'plots.gp')
-rw-r--r--plots.gp26
1 files changed, 0 insertions, 26 deletions
diff --git a/plots.gp b/plots.gp
deleted file mode 100644
index b241801..0000000
--- a/plots.gp
+++ /dev/null
@@ -1,26 +0,0 @@
-f(x) = a*x+b
-
-set term png
-set grid
-set output 'T2_timer.png'
-set xlabel "m, ед."
-set ylabel "T^2, c^2"
-fit f(x) 'outputT2_timer.data' using 1:2:3 via a,b
-plot 'outputT2_timer.data' using 1:2:3 with yerrorbars title "",\
- 'outputT2_timer.data' with line title "T^2(m)",\
- f(x) title "ax+b"
-set output 'T2_photo.png'
-set xlabel "m, ед."
-set ylabel "T^2, c^2"
-fit f(x) 'outputT2_photo.data' using 1:2:3 via a,b
-plot 'outputT2_photo.data' using 1:2:3 with yerrorbars title "",\
- 'outputT2_photo.data' with line title "T^2(m)",\
- f(x) title "ax+b"
-set output 'U.png'
-set xlabel "U, В"
-set ylabel "w, 1/c"
-set yrange[0:250]
-fit f(x) 'outputU.data' using 1:2:3 via a,b
-plot 'outputU.data' using 1:2:3:4 with xyerrorbars title "",\
- 'outputU.data' with line title "w(U)",\
- f(x) title "ax+b"