-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.gnu
31 lines (26 loc) · 1.08 KB
/
output.gnu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
# GNUPLOT v3.6 beta multiplot script file
#
reset
set style function lines
#==========================================
# Plot Pressure Wiggle
set grid
plot 'output.dat' using 1:(log10($2)) with line title 'L1sum',\
'output.dat' using 1:(log10($3)) with line title 'L2sum'
# 'output.dat' using 1:4 with line title 'w3',\
# 'output.dat' using 1:5 with line title 'w4',\
# 'output.dat' using 1:6 with line title 'w5',\
# 'output.dat' using 1:7 with line title 'w6',\
# 'output.dat' using 1:8 with line title 'w7',\
# 'output.dat' using 1:9 with line title 'w8',\
# 'output.dat' using 1:10 with line title 'w9',\
# 'output.dat' using 1:11 with line title 'w10',\
# 'output.dat' using 1:12 with line title 'w11',\
# 'output.dat' using 1:13 with line title 'w12',\
# 'output.dat' using 1:14 with line title 'w13',\
# 'output.dat' using 1:15 with line title 'w14',\
# 'output.dat' using 1:16 with line title 'w15',\
# 'output.dat' using 1:17 with line title 'w16'
pause -1 "Hit return to continue"
reset