last modified 2 month(s) ago
last modified 2 month(s) ago
last modified 2 month(s) ago
plot ExtData1 using 1:8 with linespoints
last modified 2 month(s) ago
f(x) = a*x + b
fit f(x) ExtData1 using 1:2 via a, b
g(x) = c*sin(d*x)
fit g(x) ExtData1 using 1:2 via c, d
plot ExtData1, f(x), g(x)
last modified 2 month(s) ago
set title 'theoretical result'
set xlabel 'n'
set ylabel '10n'
set xrange [0:100]
plot 10*x
last modified 2 month(s) ago
set title 'Slotted Aloha'
set xlabel ''
set ylabel ''
set xrange [1:10]
set yrange [1:20]
plot ExtData1 using 1:2
last modified 2 month(s) ago
last modified 2 month(s) ago
binwidth=.1
bin(x,width)=width*floor(x/width)
plot ExtData1 using (bin($1,binwidth)):(1.0) smooth freq with steps, ExtData2 using (bin($1,binwidth)):(1.0) smooth freq with steps
last modified 2 month(s) ago
last modified 2 month(s) ago
last modified 2 month(s) ago
last modified 2 month(s) ago
plot 'ExtData1' using 1:2 with lines smooth cspline title 'caisse1' , 'ExtData1' using 1:3 with lines title 'caisse 2' , 'ExtData1' using 1:($2+$3) with boxes title 'cumul'
last modified 3 month(s) ago
last modified 3 month(s) ago
last modified 3 month(s) ago
last modified 3 month(s) ago
last modified 3 month(s) ago
set key box
set key bottom
set xrange [20:50]
set yrange [20:50]
plot ExtData1 using 3:4 title "K 8", ExtData1 using 5:6 title "K 12", ExtData1 using 7:8 title "K 10", ExtData1 using 9:10 title "K 11", ExtData1 using 11:12 title "K 14", ExtData1 using 13:14 title "K 9"
last modified 3 month(s) ago
plot ExtData1 using 2:3
plot ExtData1 using 4:5
last modified 3 month(s) ago
last modified 3 month(s) ago