1
私は先月から働いていたxubuntuでgnuplotスクリプトを実行しようとしていますが、今日からascii文字を返します。私は問題を追跡し、set terminalコマンドにあるようだ。 Gnuplotスクリプトセット端末は私にascii文字を与えます
#!/usr/bin/gnuplot
reset
set terminal png size 1024,768
set xlabel "Time"
set ylabel "Position"
set title "Title1"
set key reverse Left outside
set grid
set style data lines
plot "file.txt" using 1:2 title "North", \
"" using 1:3 title "East", \
"" using 1:4 title "Up" #
スクリプトを提供できますか?また、AskUbuntuやUnix&Linux StackExchangesについて質問する作業もあります –