Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Resampling
  • Spline approximation
  • Douglas Peucker approximation
  • Median filter
  • Gliding Moving average filter
  • Fourier low pass filter

...

The other group of methods is the gliding moving average steepness algorithms. These algorithms compute the average steepness at an interval to the left and right of each point on the line, and compares these two steepnesses in order to compute the change of gradient. These methods are not as sensitive to noise as the finite difference methods. Therefore, you usually do not need to smoothen the input data when using this algorithm. The algorithm will get less and less sensitive to noise in the input data as you increase the calculation interval.

...