ChartDirector Ver 3.0 (C++ Edition)

ArrayMath.movMed


Usage

ArrayMath& movMed(int interval);

Description

Replace each element of the ArrayMath object by its moving median.

The interval parameter specifies the window size for computing moving median. The moving median is computed as the median of the current element with the previous (interval - 1) elements. No moving median can be computed for the first (interval - 1) elements, because there is insufficient previous elements. So the first (interval - 1) elements will be replaced with NoValue.

Arguments

ArgumentDefaultDescription
interval(Mandatory)The window size.

Return Value

The current ArrayMath object.