diff options
| author | kartofen <kartofen.mail.0@protonmail.com> | 2025-06-08 23:16:33 +0300 |
|---|---|---|
| committer | kartofen <kartofen.mail.0@protonmail.com> | 2025-06-08 23:16:33 +0300 |
| commit | 1c0b5ba38c3cadceae8cca463159481c7d6ac88d (patch) | |
| tree | 1ab6d7c0e8dab40aa26def1a2ea6098134e82ea8 /plot2.gnu | |
Diffstat (limited to 'plot2.gnu')
| -rw-r--r-- | plot2.gnu | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plot2.gnu b/plot2.gnu new file mode 100644 index 0000000..c72d5f8 --- /dev/null +++ b/plot2.gnu @@ -0,0 +1,19 @@ +set title "Some Sample Plots" + +set ylabel "-" +set y2tics +set grid + +set style line 1 \ + linecolor rgb '#0060ad' \ + linetype 1 linewidth 3 + +set style line 2 \ + linecolor rgb '#dd181f' \ + linetype 2 linewidth 3 \ + + plot 'data2.dat' using 1:5 title "Angular Speed" with lines linestyle 1 axis x1y1, \ + 'data2.dat' using 1:7 title "Angular Speed" with lines linestyle 2 axis x1y2, \ + 'data2.dat' using 1:8 title "Angular Speed" with lines linestyle 2 axis x1y2, \ + 'data2.dat' using 1:9 title "Angular Speed" with lines linestyle 2 axis x1y2, + pause -1 |
