Section 6: Clarius
Model 4200A-SCS Parameter Analyzer Reference Manual
6-232
4200A-901-01 Rev. C / February 2017
MAVG Formulator function
Returns a new column (vector) consisting of the moving averages of successive groups of data points from
another column (vector).
Usage
MAVG(
V
,
N
)
V
The name of any column (vector) in the Data Series list or any operand
N
The number of data points to be averaged in each group
Details
You can configure the number of data points in a group.
If
N
= 3 and
V
contains the 12 values
X1
,
X2
,
X3
,
X4
,
X5
,
...
,
X10
,
X11
,
X12
, then
MAVG
returns a
column (vector) that contains the following values:
#REF, (X1 + X2 + X3)/3, (X2 + X3+ X4)/3, (X3 + X4+ X5)/3, ... (X10 + X11+ X12)/3,
#REF
The new column’s values may contain instances of
#REF
(as shown above) because
MAVG
uses cells
from both sides of the target cell for its calculation.
Example
FILTER = MAVG(GATEI, 3)
Also see
None
MAX Formulator function
Searches all values in a column (vector) and returns the maximum value.
Usage
MAX(
Value
)
Value
The name of any column (vector) in the Data Series list
Example
MAXGM = MAX(DIFF(DRAINI, GATEV))
Also see
None