diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-10-10 08:30:19 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-10-10 08:30:19 +0300 |
commit | 5c17cf027a782ddcbac70039e3c41b7adc8adbea (patch) | |
tree | a73750056784c1d1c33d878f6e845e395ce3c579 /plots.gp |
initial commit
Diffstat (limited to 'plots.gp')
-rw-r--r-- | plots.gp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plots.gp b/plots.gp new file mode 100644 index 0000000..93cd408 --- /dev/null +++ b/plots.gp @@ -0,0 +1,19 @@ +set term png +set output 'T2_timer.png' +set grid +set xlabel "m, ед." +set ylabel "T^2, c^2" +plot 'outputT2_timer.data' using 1:2:3 with yerrorbars title "", 'outputT2_timer.data' with line title "T^2(m)" +set term png +set output 'T2_photo.png' +set grid +set xlabel "m, ед." +set ylabel "T^2, c^2" +plot 'outputT2_photo.data' using 1:2:3 with yerrorbars title "", 'outputT2_photo.data' with line title "T^2(m)" +set term png +set output 'U.png' +set grid +set xlabel "U, В" +set ylabel "w, 1/c" +set yrange[0:250] +plot 'outputU.data' using 1:2:3:4 with xyerrorbars title "", 'outputU.data' with line title "w(U)" |