タグ

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

タグの絞り込みを解除

VIsualizationとGnuplotに関するagwのブックマーク (1)

  • K.Yamamoto --- gnuplot

    (5) skip skip (整数) データファイルの開始行から読み飛ばす行数を指定します. これは空白行やコメント行を含みます. (6) using using (Y列) using (X列):(Y列) using (X列):(Y列):(誤差等の指定項目) 1, 2, 3..列目のデータは「1, 2, 3, ...」, データ値は「$1, $2, $3, ...」などと指定でき、 後者を用いると演算結果もプロットできます。 (例1) plot 'file.dat' using 1:2 (例2) plot 'file.dat' using $1:$2 (例3) plot 'file.dat' using 1:($2**2-$1) (例4) plot 'file.dat' using 1:2:3 with yerrorbars (例5) plot 'file.dat' using :2:xt

  • 1