diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2025-04-14 00:34:52 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2025-04-14 00:34:52 +0300 |
commit | 5ee716791bf7a8ca74c1670a6887a53ab92141f6 (patch) | |
tree | 0a5a522f89d258ec36f4af23cc60aaa578abe7e8 /240/plots.gp | |
parent | 320bf2f0155edd67557a3042403eeb843b90a41d (diff) |
added 218, 226, 234, 240
Diffstat (limited to '240/plots.gp')
-rw-r--r-- | 240/plots.gp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/240/plots.gp b/240/plots.gp new file mode 100644 index 0000000..8c71dc0 --- /dev/null +++ b/240/plots.gp @@ -0,0 +1,16 @@ +set term pngcairo size 1000, 800 +set grid + +f1(x) = a1*x+b1 +fit f1(x) 'mnk.plot' using 1:2 via a1, b1 + +set output 'mnk.png' +set title "зависимтость от t" +set xlabel "t, c" +set ylabel "ln dp1/dp(t), ед." +set key top left + +set label sprintf("A = %.4g\n B = %.4g", a1, b1) at graph 0.2, 0.9 front boxed +plot 'mnk.plot' using 1:2 notitle lc 0 pt 1 lw 2, \ + f1(x) title "y(x)" lc rgb "red" + |