Code Library
Home Submit Free Hosting Link To Us Contacts

CGI Find the Mean Value of an Array

CGI Find the Mean Value of an Array CGI CGI Find the Mean Value of an Array Download (.zip)



# if mean("s", @array) is used
# then the array will be summed
# by the function. Otherwise,
# the usage is
# mean($sumOfValues, $numberOfValues);
#
sub mean {
my($action) = shift;

if ($action eq "s") {
my($sum) = 0;
my($count) = 0;

foreach (@_) {
$sum += $_;
$count++;
}
}
else {
my($sum, $count) = @_;
}
$sum / $count;
}






CGI Find the Mean Value of an Array