Free web development scripts for the webmasterDevelopment Scripts

 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 3 users online
 o Most users online: 67
 o Home
  o Perl
   o Miscellaneous
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o Advertise Here Make Money
 o devnet
 o Free Wedding Websites
 o designplace
 o Open Source Design
 o OxyScripts
 o Wedding Vendor Directory

Find the Mean Value of an Array (Rated 0)

Description:

use this simple function to find the Mean Value of an Array

Code starts here


# 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;
}


Submitted by Devscripts on 24-02-2003 12:05


Rate This Script

User Contributed Comments

Registered Members login
© Copyright 2003 - Devscripts.net