「 gnuplot 」 一覧

matplotlib のグラフ作成と gnuplot との対応 比較

起動方法 gnuplot コマンドで $ gnuplot とすれば起動できる。 初期設定ファイルは gnuplotrc にある。 gnuplotrc の場所の見つけ方(macの場合) https:// …

no image

gnuplot でダミー変数を変更する方法

2021/07/04   -gnuplot
 

set dummy u とすると、 u をプロット時に使うダミー変数に変更することができる。 同じように、 set dummy t とすると、t をダミー変数に変更することができる。 ダミー変数は、初 …

no image

gnuplot で、グラフの境界の一部を非表示にする方法

2021/07/04   -gnuplot
 

次のページで書いてあることを参考にする。 http://gnuplot.sourceforge.net/docs_4.2/node162.html bottom=1, left=2, top=4, r …

no image

gnuplot で、グラフの形を正方形にする方法

2021/07/04   -gnuplot, python3
 ,

set size square または、その省略形で set size sq というコマンドを使えば正方形の中にグラフを描くことができる。 例 set size square plot cos(x) …

no image

gnuplot で微分記号(文字上のドット)を入力する方法

2020/12/14   -gnuplot
 

文字の上にドットを付けて、時間微分を表すことがある。これを gnuplot で表現するには、次のようにする。 例 set encoding utf8 set ylabel “x\U+0307” plo …

no image

gnuplot で「かけ算記号」を表示する方法

2020/12/14   -gnuplot
 

書き出し先(output)のフォーマットを eps 形式にしてから、{/Symbol \264} とすると「かけ算記号」が入力できる。 例 set term post eps enhanced set …

no image

gnuplot でラベルにギリシャ文字を入力する方法

2020/12/14   -gnuplot, tex
 

ギリシャ文字は、α・β・ζ・σ・・・などの文字のことである。gnuplot では、例えば、アルファ(α)を入力したい場合には、{/Symbol a} と入力する。 例 set xlabel “{/Sy …

no image

gnuplot でx,y軸ラベルを動かす方法

2020/12/14   -gnuplot
 

set xlabel のオプションで、offset を指定するとラベル文字の位置を動かすことができる。たとえば、文字サイズの10倍だけ動かしたい場合には、offset -10 を指定するとよい。off …