diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2025-04-15 00:51:40 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2025-04-15 00:51:40 +0300 |
commit | 45f12ba19761024d335407793ffb8d4823b28149 (patch) | |
tree | da44d238c8db4e8b90cd8e0edcb23cf779d22e1a /207/plots.gp | |
parent | 5ee716791bf7a8ca74c1670a6887a53ab92141f6 (diff) |
Started doing 207
Diffstat (limited to '207/plots.gp')
-rw-r--r-- | 207/plots.gp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/207/plots.gp b/207/plots.gp new file mode 100644 index 0000000..f197258 --- /dev/null +++ b/207/plots.gp @@ -0,0 +1,16 @@ +set term pngcairo size 1000, 800 +set grid + +#f1(x) = a1*x+b1 +#fit f1(x) '.plot' using 1:2:3 yerr via a1, b1 + +set output '' +set title "" +set xlabel "" +set ylabel "" +set key top left + +#set label sprintf("A = %.4g\n B = %.4g", a1, b1) at graph 0.2, 0.9 front boxed +#plot '.plot' using 1:2:3 with yerrorbars notitle lc 0 pt 1 lw 2, \ +# f1(x) title "" lc rgb "red" + |