diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-12-02 20:44:44 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-12-02 20:44:44 +0300 |
commit | 35f687f6a4e306585a263b2611f9a5c8b3c2a3a8 (patch) | |
tree | bdcd162a5c8b6341638974b00287a425d905fcbc /110/plots.gp | |
parent | 3fd86ca01c1d2b0e6e8ffe46de12d6e68054a217 (diff) |
finished 110
Diffstat (limited to '110/plots.gp')
-rw-r--r-- | 110/plots.gp | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/110/plots.gp b/110/plots.gp index 702408a..772accd 100644 --- a/110/plots.gp +++ b/110/plots.gp @@ -1,14 +1,26 @@ set term pngcairo size 1000, 800 -set tmargin at screen 0.95 +#set tmargin at screen 0.95 +set output 'compar.png' +set title "Расположение J_i на оси J (пунктир: погрешность с коэффициентом доверия a=75%)" -f1(x) = a1*x+b1 -fit f1(x) '.plot' using 1:2:3 yerr via a1, b1 +set multiplot layout 4,1 -set output '' -set label "" at graph 0.5, graph 1.025 center -set xlabel "" -set ylabel "" +set linetype 10 dashtype (5, 10) -plot '.plot' using 1:2:3 with yerrorbars notitle lc 0 pt 1 lw 2, \ - f1(x) title "" lc rgb "red", \ +unset ytics +unset xlabel + +set xrange[0.035:0.042] +set yrange[-1:1] +plot 'ex2_1.plot' every ::0::0 using 1:2:3 with xerrorbars title "J_1" lc 0 pt 1 lw 2,\ + 'ex2_2.plot' every ::0::0 using 1:2:3 with xerrorbars title "J_{1_a}" lt 10 lc 0 pt 1 lw 2 +unset title +plot 'ex2_1.plot' every ::1::1 using 1:2:3 with xerrorbars title "J_2" lc 0 pt 1 lw 2,\ + 'ex2_2.plot' every ::1::1 using 1:2:3 with xerrorbars title "J_{2_a}" lt 10 lc 0 pt 1 lw 2 +plot 'ex2_1.plot' every ::2::2 using 1:2:3 with xerrorbars title "J_3" lc 0 pt 1 lw 2,\ + 'ex2_2.plot' every ::2::2 using 1:2:3 with xerrorbars title "J_{3_a}" lt 10 lc 0 pt 1 lw 2 +set xlabel "J, кг*м^2" + +plot 'ex2_1.plot' every ::3::3 using 1:2:3 with xerrorbars title "J_4" lc 0 pt 1 lw 2,\ + 'ex2_2.plot' every ::3::3 using 1:2:3 with xerrorbars title "J_{4_a}" lt 10 lc 0 pt 1 lw 2 |