Programmer Guide/SPU Reference/AVR: Difference between revisions
From STX Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 22: | Line 22: | ||
<math>Y_t = | <math>Y_t = | ||
\begin{cases} | \begin{cases} | ||
X_t | X_t & \mbox{if }t=0 \\ | ||
\frac{t.Y_{t-1}+X_t | \frac{1}{t+1}(t.Y_{t-1}+X_t) & \mbox{if }t>0 | ||
\end{cases} | \end{cases} | ||
</math> | </math> |
Revision as of 10:08, 6 May 2011
Average input X over evaluation cycles.
[SPU SUM X TYP T RS OUT Y]
In: | X | a number, vector or matrix containing the data to be averaged |
---|---|---|
TYP | a number or string; defines the averaging method | |
T | averaging parameter (number); depends on method | |
RS | reset flag (number) | |
Out: | Y | averaged input X; same type as X |
- Description
The averaging algorithm is defined by the inputs TYP and T. The atom averages the elements X[i,j]t over evaluation cycles t (i=row index, j=column index, t=cycle counter) and stores the averaged value in the element Y[i,j]t.
- invinite average: TYP=
0
orlinear
; T=0
- See also
<SP-atoms>