Programmer Guide/SPU Reference/AVR: Difference between revisions
From STX Wiki
Jump to navigationJump to search
No edit summary |
|||
Line 68: | Line 68: | ||
\end{cases} | \end{cases} | ||
</math> | </math> | ||
:;power: | |||
::<var>TYP</var>=<code>4</code> or <code>power</code> | |||
::<var>T</var> is not used | |||
::* each input element X<sub>i,j</sub> is squared | |||
::* same averaging as for TYP</var>=<code>4</code> is performed | |||
::* square root of each output element Y<sub>i,j</sub> is taken | |||
;See also: | ;See also: | ||
<[[../#Signal Processing Atoms|SP-atoms]]> | <[[../#Signal Processing Atoms|SP-atoms]]> | ||
<!-- AN, 2.5.2011 --> | <!-- AN, 2.5.2011 --> |
Revision as of 10:44, 16 October 2018
Average input X over evaluation cycles.
[SPU AVR X TYP T RS OUT Y]
input | description | data type | value type | default value |
---|---|---|---|---|
X | data to be averaged | number, vector, matrix | variable | |
TYP | averaging method | number (int.), string | constant | |
T | averaging parameter, depends on method | number or n.c. | TYP=1→variable TYP≠2→constant | |
RS | reset flag | number or n.c. | variable | |
output | description | data type | value type | comment |
Y | averaged input data | same type as X | variable |
- 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.
The cycle counter t is initialized with 0 and incremented by 1 after each evaluation cycle. The cycle counter is reset, if the input RS is set to a value greater than 0
. The input RS is checked each time the SPU is started.
- infinite average
- TYP=
0
orlinear
- T=
0
- running average
- TYP=
0
orlinear
- T>
0
; T is the (integer) number of averaging cycles - exponential average
- TYP=
1
orexponential
0
<T<1
; T is the averaging factor- minimum
- TYP=
2
orminimum
- T is not used
- maximum
- TYP=
3
ormaximum
- T is not used
- power
- TYP=
4
orpower
- T is not used
- each input element Xi,j is squared
- same averaging as for TYP=
4
is performed - square root of each output element Yi,j is taken
- See also
<SP-atoms>