# gnuplot によるグラフ描画のスクリプト記述例
# (gnuplotのコマンド等仕様は各自で調べて使う)
#
# 使用例:
# % gnuplot gnuplot-graph.gp.txt
#
### 保存形式 png
set term png

### 保存ファイル名
set output "sample_1kHz.png"

### X軸とY軸の軸名を指定
set xlabel "#samples"
set ylabel "amp."

### 
plot [0:511] "sample_1kHz.txt" notitle with lines
