Help for this page

Select Code to Download


  1. or download this
    my $infile = $ARGV[0];
    open (IFILE, "<", $infile) || die "Cannot open : $!\n";
    ...
    }
    close IFILE;
    my $count = @data;
    
  2. or download this
    my $variance;
    my $var;
    ...
                $variance = $var*(($data[$index]-$Average)**2);
    }
    print "$variance\n";