Skip to content

Instantly share code, notes, and snippets.

@kyontan
Created October 28, 2012 14:29
Show Gist options
  • Save kyontan/3968745 to your computer and use it in GitHub Desktop.
Save kyontan/3968745 to your computer and use it in GitHub Desktop.
Gnuplotめも
EPSに出力する場合
gnuplot > set terminal postscript enhanced eps (color)
gnuplot > set output '出力ファイル名'
gnuplot > (以降、プロットの操作)
度の扱いをラジアン⇒度数法へ
gnuplot> set degree angle
gnuplot> set logscale y
グラフの幅
gnuplot> set xrange[0:10]
メモリの細かさ
gnuplot> set xtics 2
小さなメモリの細かさ(※値は大きい目盛を何分割するか)
gnuplot> set mxtics 2
グリッドの表示非表示
gnuplot> set grid {no}xtics mytics
グリッド全解除
gnuplot> unset grid
gnuplot> plot log(x)
参考:
GNUPLOT
http://t16web.lanl.gov/Kawano/gnuplot/intro/index.html
格子線 (グリッド)
http://www.gnuplot-cmd.com/chart/grid.html
gnuplotのまとめ @Wiki EPS形式で出力
http://www7.atwiki.jp/gnuplot/pages/9.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment