⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wlan-latdist

📁 对IEEE 802.11e里的分布式信道接入算法EDCA进行改进
💻
字号:
#!/bin/tcsh## works on a latency file produced by wlan-lat# outputs cummulative % of packets below increasing# latency thresholdsif ( $#argv != 2 ) then  echo usage:  echo "      " $0 \<scenario\> \<flow id\>  exit 1endifset scenario = $1set flow = $2set latfile = $scenario.$flow.latset distfile = $scenario.$flow.latdistrm -f $distfileset total = `wc -l $latfile | gawk '{ print $1; }'`gawk '{ print $2; }' $latfile | sort -g | gawk -v total=$total '{ print $1, (++i)*100.0/total; }' > $distfile

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -