#!/usr/bin/env gnuplot # # using 2:3 は、plot の対象として "./DATA" の2列目と3列目を使うことを示している。 # set terminal png set output "./i-pow-i.png" set grid set xtics 0.1 set ytics 0.1 set xlabel "Re" set ylabel "Im" plot "./DATA" using 2:3 with lines notitle