Re: [PHP] how to "Harmonic Mean" manual

2007-12-14 Thread LKSunny
i testing ~ it's correct Thank You Very Much !! ""Richard Lynch"" <[EMAIL PROTECTED]> ???:[EMAIL PROTECTED] > If I am reading Wikipeadia correctly, you want this: > > function stats_harmonic_mean($array){ > $count = count($array); > $mean = 0; > foreach($array as $n){ >$mean += 1/$n;

Re: [PHP] how to "Harmonic Mean" manual

2007-12-14 Thread Per Jessen
Per Jessen wrote: > I don't think you need to know much about statistics - AFAIK, the > harmonic mean of a group of numbers is simply the reciprocal of > the 'normal' mean: > > harmonic_mean(3,4,5,6) = 1/mean(3,4,5,6) Ignore that. /Per Jessen, Zürich -- PHP General Mailing List (http://www.p

Re: [PHP] how to "Harmonic Mean" manual

2007-12-14 Thread Richard Lynch
If I am reading Wikipeadia correctly, you want this: No guarantees as to correctness. The *real* function probably takes a variable number of arguments, and you can do that if you need to, but you're on your own for that. On Fri, December 14, 2007 8:38 am, LKSunny wrote: > i know it can make s

Re: [PHP] how to "Harmonic Mean" manual

2007-12-14 Thread Per Jessen
LKSunny wrote: > i know it can make simple function, if have Statistics knowledge... > I don't think you need to know much about statistics - AFAIK, the harmonic mean of a group of numbers is simply the reciprocal of the 'normal' mean: harmonic_mean(3,4,5,6) = 1/mean(3,4,5,6) /Per Jessen, Zür

Re: [PHP] how to "Harmonic Mean" manual

2007-12-14 Thread Jochem Maas
LKSunny wrote: > i know it can make simple function, if have Statistics knowledge... ah so you can read a page and therefore determine it's simple even though you have no 'Statistics knowledge' - brilliant deduction. you have 3 choices (given that your to stubborn to ask the sys admin to install

Re: [PHP] how to "Harmonic Mean" manual

2007-12-14 Thread LKSunny
i know it can make simple function, if have Statistics knowledge... reference: http://en.wikipedia.org/wiki/Harmonic_Mean "Jochem Maas" <[EMAIL PROTECTED]> ???:[EMAIL PROTECTED] > LKSunny wrote: >> i know stats_harmonic_mean(), but i am not server admin, i can't install >> PECL, so i need ma

Re: [PHP] how to "Harmonic Mean" manual

2007-12-14 Thread Jochem Maas
LKSunny wrote: > i know stats_harmonic_mean(), but i am not server admin, i can't install > PECL, so i need make it by manual, but i have't Statistics knowledge, any > one can help me ? thank you very much !! I doubt anyone is going to write a php version of that function for you. given that y

[PHP] how to "Harmonic Mean" manual

2007-12-14 Thread LKSunny
i know stats_harmonic_mean(), but i am not server admin, i can't install PECL, so i need make it by manual, but i have't Statistics knowledge, any one can help me ? thank you very much !! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php