Gnuplotを使用してpng画像を出力します。その後、画像が生成されましたが、開くことができません。どういう理由ですか? Ubuntuで他のpng画像を開くことができます。
#! /usr/bin/gnuplot
set terminal emf size 1280,960 font '/usr/common/fonts/simsun.ttc,14'
set style data histograms
set style fill transparent pattern 1 border
set grid
set title '有/无多AP协作下,AP吞吐量对比'
set output 'BSS吞吐量对比曲线.png'
set xlabel 'BSS'
set ylabel 'AP 吞吐量/Mbps'
#set xtics('BSS1' 0,'BSS2' 1,'BSS3' 2,'BSS4' 3,'BSS5' 4)
set xrange [-1:5]
set yrange [0:7000]
plot 'hewthroughput.txt' using 2:xticlabels(1) title '无多AP协作',\
'hewthroughput.txt' using 3:xticlabels(1) title '有多AP协作',\
'hewthroughput.txt' using ($1-1):($2+200):($2) with labels notitle,\
'hewthroughput.txt' using ($1-0.8):($3+200):($3) with labels notitle
set terminal emf
は、あなたが EMFファイルの作成 であることを意味します。 .png
を使用するようにファイル名を設定したからといって、魔法のようにPNGファイルになるわけではありません。 gnuplotでPNGファイルを作成する場合は、 set terminal png
を使用します。