Skip to content

Commit

Permalink
Update xy_svg.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
fdiengdoh authored Apr 24, 2023
1 parent be03558 commit ab7a3ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xy_svg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ set title "[X]/[Y] vs Time Plot"
set xlabel "Time (t)"
set ylabel "[X]/[Y]"
set yrange [0:450]
plot "rk.dat" u (column(0)):2 w l lw 3 lc rgb '#9400d4' title "[X]","rk.dat" u (column(0)):3 w l lw 3 lc rgb '#0060ad' title "[Y]"
plot "lv-res.dat" u (column(0)):2 w l lw 3 lc rgb '#9400d4' title "[X]","lv-res.dat" u (column(0)):3 w l lw 3 lc rgb '#0060ad' title "[Y]"


set terminal svg enhanced font 'Arial,11'
set title "[X] vs [Y] Plot"
set xlabel "[X]"
set ylabel "[Y]"
set output "rk2.svg"
plot "rk.dat" using 2:3 w l lw 3 lc rgb '#0060ad' title ""
plot "lv-res.dat" using 2:3 w l lw 3 lc rgb '#0060ad' title ""

0 comments on commit ab7a3ca

Please sign in to comment.