Created
October 28, 2012 14:29
-
-
Save kyontan/3968745 to your computer and use it in GitHub Desktop.
Gnuplotめも
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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