Thread output von gnuplot speichern (16 answers)
Opened by johnh at 2008-10-12 02:31

topeg
 2008-10-12 13:58
#115411 #115411
User since
2006-07-10
2611 Artikel
BenutzerIn

user image
Doch es liegt am GnuplotScript.
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
set grid nopolar
set size 0.8,0.6
set grid xtics nomxtics ytics nomytics noztics nomztics \
nox2tics nomx2tics noy2tics nomy2tics nocbtics nomcbtics
set grid layerdefault linetype 0 linewidth 1.000, linetype 0 linewidth 1.000
unset logscale
set autoscale y
set xlabel "Time(sec)" font "Arial,12"
set ylabel "verlust in %" font "Arial, 12"
set ytics ( 0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0)
set title "Packet Loss" font "Arial,12"
set yrange [ 0.000 : 4.000 ] #noreverse nowriteback

set terminal png
set output "packageloss.png"

plot 'plot.dat' with impulses lt 3 lw 2 ti "Packet Loss"

#set output "Packetloss2.png"
#set terminal png
#replot


Das erstellt ein bild "packageloss.png" schau mal ob es da ist, nachdem du das Prgramm ausgeführt hast.
existiert auch die Datei "plot.dat" mit den nötigen Werten?

View full thread output von gnuplot speichern