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.
|
# 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
|
|
|