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

📄 latency-dist.sh

📁 对IEEE 802.11e里的分布式信道接入算法EDCA进行改进
💻 SH
字号:
#we run the latency-dist.sh script following the delay-compute.sh script to compute the latency distribution of#each class category.#!/bin/csh -fset name_file = audio-video-Bt.tclset max_nodes = 14set increment1 = 16set increment2 = 31set nodes = 1cat $name_file.0.lat >  audio_$name_file.0.lat cat $name_file.15.lat > video_$name_file.1.latcat $name_file.30.lat > back_$name_file.2.latwhile ( $nodes <= $max_nodes ) cat $name_file.$nodes.lat >> audio_$name_file.0.latcat $name_file.$increment1.lat >> video_$name_file.1.latcat $name_file.$increment2.lat >> back_$name_file.2.lat	 @ nodes = $nodes  +  1	@ increment1 = $increment1 + 1	 @ increment2 = $increment2 + 1endwlan-latdist audio_$name_file 0wlan-latdist video_$name_file 1wlan-latdist back_$name_file  2

⌨️ 快捷键说明

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