testFRp.pl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #!/usr/bin/perl -w
  2. use strict 'refs';
  3. use strict 'subs';
  4. if ($#ARGV != 2) {
  5.   &usage;
  6.   exit;
  7. }
  8. sub usage {
  9.   print STDERR " usage: $0 <pattern> <probability> <time>n";
  10.   exit;
  11. }
  12. my $p = $ARGV[1];
  13. my @a = <$ARGV[0]*>;
  14. my $time = $ARGV[2] - 10;
  15. my $frp = sqrt(1.5)/(0.040*sqrt($p));
  16. print STDERR "frp = $frp n";
  17. foreach $file (@a) {
  18.   my ($pre1, $pre2, $x) = split(/-/,$file);
  19.   
  20.   print STDERR "Doing $file n";
  21.   
  22.   my $command = "awk '{if ($4==1) { if ($2==50) start = $6; if($2==$time) print $x, ($6-start)/(($time-50)*1000*$frp)}}' $file";
  23. # print "$command", "n";
  24.  system($command);  
  25. }
  26.