Top Level :: Math

Package Information: Math_Stats

Show All Changelogs
» Version » Information
0.9.0beta3Download

Release date: 2003-06-12 15:46 UTC
Release state: beta

Changelog:

Modified the productN() method to try and avoid numeric overflow, and in case
there is overflow to return an array of values to be multiplied, instead of
a single resulting value.

Changed also the geometricMean() method to work with the new productN() and
product() methods. Unit tests have been unaffected by the change.

0.9.0beta2Download

Release date: 2003-06-05 02:22 UTC
Release state: beta

Changelog:

This is a bug fix release. Fixes (finally) an old bug in calculation of the
median. Users of any previous version are recommended to upgrade.

When I fixed a previous bug in the calculation of the median, I forgot to apply
the full fix, so it was calculating an erroneous value for data sets with an
odd number of entries.

Thanks to Diego Puga for pointing this out. It is good to get bug reports
when one is getting old and forgetful. ;-)

0.9.0beta1Download

Release date: 2003-06-03 06:03 UTC
Release state: beta

Changelog:

This is a beta release that containes new not thoroughly tested methods and
algorithms.

Many changes in the existing methods, and a number of new ones:

- Added better error handling.
- Refactored existing methods to delegate calculations better
- Added value caching for invariant statistical parameters
- Added optional parameters to some existing methods to enhance their
processing or output. Preserve the original behaviour as default so
as not breack backwards compatibility
- Added new methods:
- center()
- studentize()
- range()
- geometricMean()
- harmonicMean()
- product()
- productN()
- percentile()
- quartiles()
- interquartileMean()
- interquartileRange()
- quartileDeviation()
- quartileVariationCoefficient()
- quartileSkewnessCoefficient()
- Added a unit test class based on PEAR::PHPUnit

0.8.5Download

Release date: 2003-05-28 03:35 UTC
Release state: stable

Changelog:

Added methods sampleCentralMoment() and sampleRawMoment() to
calculate the corresponding nth moments of the data set.
Explicit casting of parameters passed to pow() to
circumvent the warnings/errors given by some versions
of the PHP interpreter. Thanks to Stephen Evans for
pointing this problem out.

0.8.4Download

Release date: 2003-05-17 02:17 UTC
Release state: stable

Changelog:

Fixed problem in element selection for the calculation
of the median. Thanks to Jeff Hoover for finding this bug.

0.8.3Download

Release date: 2002-05-24 04:22 UTC
Release state: beta

Changelog:

Another bug fix release. Version 0.8.2 was not released due
to wrong tags and bugs.

0.8.1Download

Release date: 2002-05-24 04:14 UTC
Release state: beta

Changelog:

Bug fix in __sumdiff() and in __sumabsdev(), which made
the variance, standard deviation, etc. be calculated incorrectly.

0.8.0Download

Release date: 2002-05-16 08:54 UTC
Release state: beta

Changelog:

Initial release under PEAR