このページの2つのバージョン間の差分を表示します。
| 次のリビジョン | 前のリビジョン |
| ツール:gnuplot [2016/12/20 14:09] – 作成 mumeiyamibito | ツール:gnuplot [2019/03/12 11:20] (現在) – [その他] mumeiyamibito |
|---|
| <code>set colorbox vertical user origin x,y size w,h</code> | <code>set colorbox vertical user origin x,y size w,h</code> |
| * [[http://stackoverflow.com/questions/13494684/how-to-move-the-color-bar-of-a-heatmap-in-gnuplot | plot - How to move the color bar of a heatmap in gnuplot? - Stack Overflow]] | * [[http://stackoverflow.com/questions/13494684/how-to-move-the-color-bar-of-a-heatmap-in-gnuplot | plot - How to move the color bar of a heatmap in gnuplot? - Stack Overflow]] |
| | |
| | ==== 目盛りの長さを設定する ==== |
| | * 全体 (x軸、y軸、z軸、カラーバー) の目盛りの長さの設定\\ <code>set ticscale <大目盛りの長さ> [小目盛りの長さ]</code> |
| | * 特定の軸のみ目盛りの長さを設定 (scale オプションを使う) |
| | * x軸\\ <code>set xtics scale <大目盛りの長さ> [小目盛りの長さ]</code> |
| | * y軸\\ <code>set ytics scale <大目盛りの長さ> [小目盛りの長さ]</code> |
| | * z軸\\ <code>set ztics scale <大目盛りの長さ> [小目盛りの長さ]</code> |
| | * カラーバー\\ <code>set cbtics scale <大目盛りの長さ> [小目盛りの長さ]</code> |
| | |
| | ==== 対数スケール ==== |
| | * 軸を対数スケールにする\\ <code>set logscale AXIS [BASE]</code> |
| | * ''AXIS'': 対数スケールにする軸 (''x'', ''y'', ''xy'') |
| | * ''BASE'': 対数の基数 |
| | * 参考サイト: [[http://www.gnuplot-cmd.com/axis/logscale.html | gnuplotコマンド集 - 対数スケール]] |
| | |
| | ==== 背景色を設定する ==== |
| | * 背景オブジェクトを設定する。<code>set object 1 rect behind from screen 0,0 to screen 1,1 fc rgb "#000000" fillstyle solid 1.0</code> |
| | * ''#000000'' を 16進数のカラーコードで設定する。 |
| | * 参考サイト: [[http://miyabi-mathematics.hatenablog.com/entry/2017/01/25/212328 | gnuplotで背景色を黒にする - みやびの備忘録]] |
| |
| ==== その他 ==== | ==== その他 ==== |