Help for this page

Select Code to Download


  1. or download this
    foreach my $r (0 .. $total){
       $row[$r] = $aob[$r][$y - 1];
    }
    my @rowin   = grep { $_ ne q{} } @row;
    $mean    = mean(@rowin);
    
  2. or download this
    sub popnum3 {
        my ( $x, $y, $z, $mean ) = @_;
        $aob[$x][$y] = $mean * ( 1 + $z );
        return $aob[$x][$y];
    }
    
  3. or download this
    foreach my $r (0 .. $total){
       $row[$r] = $aob[$r][$y - 1];
    }