AJ Design Engineering Software Home Page
  Home    Page 2    Page 3    Page 4    Page 5    Physics    Math    Fluid Mechanics    Investment Finance     Mortgage Calculator     Nursing


AJ PHP Software Source Code Math Library
Array Average


float array_average ( array_number a)

Description:

array_average calculates the mean or average of an array of numbers.

array average equation

Source Code:

function array_average ($a)
{
  //variable and initializations
  $the_result = 0.0;
  $the_array_sum = array_sum($a); //sum the elements
  $number_of_elements = count($a); //count the number of elements

  //calculate the result
  $the_result = $the_array_sum / $number_of_elements;

  //return the value
  return $the_result;
}

Example:

<?
include ("ajmath.php");

$a = (2.0, 3.0, 5.0);

$the_average = array_average($a);

echo "a[0] = $a[0]<br>";
echo "a[1] = $a[1]<br>";
echo "a[2] = $a[2]<br>";
echo "the_average = $the_average<br>";
?>


Run Example


array average solve for the average of an array
factorial integer solve for the factorial of an integer
log base solve for the base of the logarithm function

References - Books:
Max A. Sobel, Nobert Lerner. 1991. Precalculus Mathematics. Prentice Hall.
Subwoofer Box Software Downloads for Sealed, Ported and Bandpass
Salary Wage Pay Calculator - Jobs Career
Baby Infant Growth Charts - Weight Age Percentile
Dog Age Calculator - Human Age Converter
Fraction Calculator - Simplify Reduce
Engine Horsepower Calculator
Earned Value Project Management
Present Worth Economics Calculator
Constant Acceleration Motion Calculator
Statistics Equations Formula Calculator
Mortgage Payment Finance Calculator
Weight Loss Formulas Calculator
Body Mass Index BMI Calculator
Fluorescent Light Bulb Cost Analysis Calculator
Automobile Fuel Economy Calculator
Gasoline Diesel

Car Truck Tire Size Comparison Calculator
Paycheck and Overtime Rate Calculator
Sale Discount Calculator - Percent Off Price

AJ Design - Online Science Mathematics Engineering Software Programs | 2 | 3 | 4 | 5

by Jimmy Raymond

Technical Tools, Specifications, How to Guides, Reviews, Training, Applications, Examples, Tutorials, Answers, Test Review Resources, Analysis, Homework Solutions, Help, Data and Information for Engineers, Technicians, Teachers, Tutors, Researchers, K-12 Education, College and High School Students, Science Fair Projects and Scientists

Contact: aj@ajdesigner.com

Privacy Policy, Disclaimer and Terms

Copyright 2002-2011