タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

gnuplotに関するcanipyのブックマーク (2)

  • Gnuplot - ネット私物化

    よく使うテンプレ set term png #set term windows set size 0.6,0.6 set datafile separator "," set lmargin 10 set bmargin 3 set rmargin 2 set tmargin 1 set output "result_WHLMTQ.png" set xlabel "Time[sec]" set key left bottom set grid set format y "%3.0f" set multiplot layout 2,1 #multiplotの開始、縦3横2自動配置 set format y "%4.0f" set ylabel "WHL[RPM]/Mag.[10^-3 Nms]" p [:12000][-200:600] \ "out1.csv" u 1:($60*60/(2

    Gnuplot - ネット私物化
  • gnuplot / datetime

    時系列型データを用意する. データが日にちや時間となっている時系列データをプロットするには,まず set xdata time や set ydata time を使ってデータ が日付型であることgnuplotに教え,さらに set timefmt で日 付/時間の表示がどのようになっているかを与える必要があります.始めに データとしては以下のようなものを考えます. 2004-02-09 310 2004-02-10 185 2004-02-11 239 2004-02-12 132 2004-02-13 85 2004-02-14 57 2004-02-15 8 この日付のデータをgnuplotに読み込ませるには,timefmtとして "%Y-%m-%d" を与えます.この例では月と日にちが10未満の時に頭にゼロを パディングして桁数をそろえていますが,これをしなくとも(例えば 20

  • 1