Programmer Guide/SPU Reference/AVR: Difference between revisions
From STX Wiki
Jump to navigationJump to search
No edit summary |
|||
Line 3: | Line 3: | ||
==<code>[SPU AVR <var>X TYP T RS</var> OUT <var>Y</var>]</code>== | ==<code>[SPU AVR <var>X TYP T RS</var> OUT <var>Y</var>]</code>== | ||
{|class="einrahmen" | {|class="einrahmen" | ||
! | !dir. !!name !!description !!type !!default | ||
|<var>X</var>||a number, vector or matrix containing the data to be averaged ||variable | |in|| <var>X</var>||a number, vector or matrix containing the data to be averaged ||variable | ||
|- | |- | ||
| ||<var>TYP</var>||a number or string; defines the averaging method ||constant | |in||<var>TYP</var>||a number or string; defines the averaging method ||constant | ||
|- | |- | ||
| ||<var>T</var>||averaging parameter (number); depends on method ||variable, only for <var>TYP</var>=2 | |in||<var>T</var>||averaging parameter (number); depends on method ||variable, only for <var>TYP</var>=2 | ||
|- | |- | ||
| ||<var>RS</var>||reset flag (number) ||variable, only checked on SPU start | |in||<var>RS</var>||reset flag (number) ||variable, only checked on SPU start | ||
|- | |- | ||
! | !out||<var>Y</var>||averaged input <var>X</var>; same type as <var>X</var> | ||
|<var>Y</var>||averaged input <var>X</var>; same type as <var>X</var> | |||
|} | |} | ||
Revision as of 11:49, 6 May 2011
Average input X over evaluation cycles.
[SPU AVR X TYP T RS OUT Y]
dir. | name | description | type | default | in | X | a number, vector or matrix containing the data to be averaged | variable |
---|---|---|---|---|---|---|---|---|
in | TYP | a number or string; defines the averaging method | constant | |||||
in | T | averaging parameter (number); depends on method | variable, only for TYP=2 | |||||
in | RS | reset flag (number) | variable, only checked on SPU start | |||||
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.
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
- See also
<SP-atoms>