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

📄 genplothost.awk

📁 this is source code for adhoc network using omnet
💻 AWK
字号:
/*compute the delivery rate h <speed, sent, delivered> point*/NR == 1		{			h = $2;			sp = $1			samples = 1;		}NR >1 		{			if( sp != $1)  			{				printf"%d \t %.2f\n", sp, h /samples;							/* reinitialize the variables  */				h = $2;				sp = $1;				samples = 1;			}			else			{				h += $2;				samples ++;			}		}END		{			/* print the last row that otherwise wouldn't be printed */						printf"%d \t %.2f\n", sp, h /samples;		}		

⌨️ 快捷键说明

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