self-confidence,the source of all the power

导航

2010年9月27日 #

Editcap 工具用法

摘要: options:-c <packets per file> Splits the packet output to different files based on uniform packet counts with a maximum of <packets per file> each. Each output file will be created with a ... 阅读全文

posted @ 2010-09-27 19:57 漩涡鸣人 阅读(3237) 评论(0) 推荐(0) 编辑

Matlab 取整

摘要: 1)fix(x) : 截尾取整.>> fix( [3.12 -3.12])ans = 3 -3(2)floor(x):不超过x 的最大整数.(高斯取整)>> floor( [3.12 -3.12])ans = 3 -4(3)ceil(x) : 大于x 的最小整数>> ceil( [3.12 -3.12])ans = 4 -3(4)四舍五入取整>> r... 阅读全文

posted @ 2010-09-27 15:26 漩涡鸣人 阅读(1210) 评论(0) 推荐(0) 编辑