- png ファイルに出力することを明示
- 出力ファイルを指定
- 一度 plot
この状態ではまだ gnuplot が指定の png ファイルを抱えたままになっているので、ここで gnuplot を終了するか、出力先を png から変更してやる必要あり
- 出力先を win に戻す
- 再度 plot
- png ファイルが閉じられ、結果が表示できるようになる
gnuplot ターミナルでの操作手順は以下の通り
gnuplot> set term png size 400,300
Terminal type set to 'png
Options are 'nocrop font arial 12 size 400,300 '
gnuplot> set output 'C:\home\gnuplot\000.png'
gnuplot> plot 'c:\home\gnuplot\test.dat'
gnuplot> set term win
Terminal type set to 'windows'
Options are 'color noenhanced font "Arial, 10"'
gnuplot> plot 'c:\home\gnuplot\test.dat'
Closing C:\home\gnuplot\000.png
Example: test.dat
1 100
2 150
3 120
4 180
5 200
6 240
7 290
8 340
9 400
10 500
出力結果
0 件のコメント:
コメントを投稿