You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
296 B
12 lines
296 B
6 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
file=$1
|
||
|
|
||
|
gnuplot -persist <<EOF
|
||
|
set datafile separator ","
|
||
|
set xzeroaxis
|
||
|
set yzeroaxis
|
||
|
set style data points
|
||
|
set pointsize 0.5
|
||
|
plot "$file" using 7:8 with points title "X-Y", "$file" using 8:9 with points title "Y-Z", "$file" using 9:7 with points title "Z-X"
|
||
|
EOF
|