Programmer Guide/SPU Reference/AVR: Difference between revisions
From STX Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
;Description: | ;Description: | ||
The averaging algorithm is defined by the inputs <var>TYP</var> and <var>T</var>. The atom averages the elements <var>X</var>[i,j]<sub>t</sub> over evaluation cycles t (i=row index, j=column index, t=cycle counter) and stores the averaged value in the element <var>Y</var>[i,j]<sub>t</sub>. | The averaging algorithm is defined by the inputs <var>TYP</var> and <var>T</var>. The atom averages the elements <var>X</var>[i,j]<sub>t</sub> over evaluation cycles t (i=row index, j=column index, t=cycle counter) and stores the averaged value in the element <var>Y</var>[i,j]<sub>t</sub>. | ||
*invinite average: <var>TYP</var>=<code>0</code> or <code>linear</code>; <var>T</var>=<code>0</code> | *invinite average: <var>TYP</var>=<code>0</code> or <code>linear</code>; <var>T</var>=<code>0</code> | ||
<math>Y[i,j]_t = | |||
\begin{cases} | |||
X[i,j]_t \mbox{if }n\mbox{t=0} \\ | |||
3n+1, & \mbox{if }n\mbox{t>0} | |||
\end{cases} | |||
</math> | |||
|<var>A<sub>number</sub></var> | |<var>A<sub>number</sub></var> |
Revision as of 10:02, 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
Failed to parse (unknown function "\begin{cases}"): {\displaystyle Y[i,j]_t = \begin{cases} X[i,j]_t \mbox{if }n\mbox{t=0} \\ 3n+1, & \mbox{if }n\mbox{t>0} \end{cases} }
|Anumber |Ynumber | |- |Avector |Ynumber | |} with: n = length of Avector
- See also
<SP-atoms>