Math::CMA

Central Moving Average noise removal
Download

Math::CMA Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Bjorn Hohrmann
  • Publisher web site:
  • http://search.cpan.org/~bjoern/

Math::CMA Tags


Math::CMA Description

Math::CMA is a Perl module to remove the Central Moving Average noise.The central_moving_averages function takes a smoothing distance and an array reference and returns a list that averages all values in the input over the distance value, in other words, it returns for each value in the input the arithmetic mean of that value plus $distance many values before and $distance many values after it. A practical application would be smoothing time series data.SYNOPSIS use Math::CMA 'central_moving_averages'; my @averaged = central_moving_averages(2, ); # returns (2, 2.5, 3, 3.5, 4)Product's homepage


Math::CMA Related Software