まず、迅速な対応をしていただきありがとうございます。グラフの作成中に次のクエリをいくつか取得しました。
カーブ フィッティング グラフを作成しようとしており、a、b、c の値とデータ ポイントがあります。各行に a,b,c と書くことはできますか? ユーザーの役に立ちます。a=2,b=5.. のように、各クワッド グラフについて。
点線を作成しようとしましたが、成功しませんでした。png端末で点線を作成することはできますか?
線上の特定の場所に点を作成する必要があります。gnuplotで可能ですか?
端末を設定しましたが、それが最適であり、利用できないことが
png
わかりました。pngcario
より良いグラフを作成する他の端末はありますか?グラフを改善するための他の提案は、私に大いに役立ちます(まだ要件にはほど遠いです)
コードでplot を splotに置き換えて散布図を作成しようとしましたが、次のエラーが発生しました。 デカルト データには 1 列または 3 列が必要
7.Gnuplot のバージョン: /remote/gnuplot-4.6.0/bin/gnuplot
現在のgnuplot
コードは次のとおりです。
set title 'Approximation Graph'
set term png size 1200 1200
set output 'plot.png'
set xlabel "CLK-D Time (ps)"
set ylabel "CLK-Q Time (ps)"
set style line 1 linecolor rgb "black" linewidth 1.000 pointtype 0
set style line 2 linecolor rgb "red" linewidth 1.000
set style line 3 linecolor rgb "black" linewidth 1.000 pointtype 0
set style line 4 linecolor rgb "blue" linewidth 1.000
set xrange [-250 : 100]
set yrange [100 : 250]
set xtics 10
set ytics 10
f0_s(x) = a2 * x**2 + b2 * x + c2
fit f0_s(x) 'clk0_s' via 'clk0_s_c'
f1_s(x) = a8 * x**2 + b8 * x + c8
fit f1_s(x) 'clk1_s' via 'clk1_s_c'
f0_h(x) = a14 * x**2 + b14 * x + c14
fit f0_h(x) 'clk0_h' via 'clk0_h_c'
f1_h(x) = a20 * x**2 + b20 * x + c20
fit f1_h(x) 'clk1_h' via 'clk1_h_c'
set style data lines
plot "clk0_h" u 1:2 ls 4 title "clk0_h", f0_h(x) ls 3 title "clk0_h_quad_g" with steps , \
"clk1_h" u 1:2 ls 2 title "clk1_h", f1_h(x) ls 1 title "clk1_h_quad_g" with steps, \
"clk0_s" u 1:2 ls 2 title "clk0_s", f0_s(x) ls 1 title "clk0_s_quad_g" with steps, \
"clk1_s" u 1:2 ls 4 title "clk1_s", f1_s(x) ls 3 title "clk1_s_quad_g" with steps
f0_s(x) = a2 * x**2 + b2 * x + c2
fit f0_s(x) 'clk0_s' via 'clk0_s_c'
GNU グラフ:
要件グラフ: