「 gnuplot 」 一覧
-
matplotlib のグラフ作成と gnuplot との対応 比較
2023/01/18 -gnuplot, matplotlib
gnuplot, matplotlib, python起動方法 gnuplot コマンドで $ gnuplot とすれば起動できる。 初期設定ファイルは gnuplotrc にある。 gnuplotrc の場所の見つけ方(macの場合) https:// …
-
set dummy u とすると、 u をプロット時に使うダミー変数に変更することができる。 同じように、 set dummy t とすると、t をダミー変数に変更することができる。 ダミー変数は、初 …
-
次のページで書いてあることを参考にする。 http://gnuplot.sourceforge.net/docs_4.2/node162.html bottom=1, left=2, top=4, r …
-
set size square または、その省略形で set size sq というコマンドを使えば正方形の中にグラフを描くことができる。 例 set size square plot cos(x) …
-
文字の上にドットを付けて、時間微分を表すことがある。これを gnuplot で表現するには、次のようにする。 例 set encoding utf8 set ylabel “x\U+0307” plo …
-
書き出し先(output)のフォーマットを eps 形式にしてから、{/Symbol \264} とすると「かけ算記号」が入力できる。 例 set term post eps enhanced set …
-
ギリシャ文字は、α・β・ζ・σ・・・などの文字のことである。gnuplot では、例えば、アルファ(α)を入力したい場合には、{/Symbol a} と入力する。 例 set xlabel “{/Sy …