Programmer Guide/SPU Reference/SELECTAB: Difference between revisions
From STX Wiki
Jump to navigationJump to search
No edit summary |
|||
Line 43: | Line 43: | ||
with: 0 ≤ i < length of <var>A<sub>vector</sub></var> | with: 0 ≤ i < length of <var>A<sub>vector</sub></var> | ||
;See also: | ;See also: | ||
<[[../#Signal Processing Atoms|SP-atoms]]> | <[[../#Signal Processing Atoms|SP-atoms]]>; [[../MASKABC]] | ||
<!-- AN, 2.5.2011 --> | <!-- AN, 2.5.2011 --> |
Revision as of 13:35, 6 May 2011
Two channel multiplexer.
[SPU SELECTAB A B SEL OUT Y]
input | description | data type | value type | default value |
---|---|---|---|---|
A, B | input data | number, vector | variable | |
SEL | select switch | number (int.), string | variable | 0
|
output | description | data type | value type | comment |
Y | selected data | same type as A | variable |
- Description
SEL | Ynumber=f(Anumber,Bnumber) | Yvector=f(Avector,Bnumber) | Ynumber=f(Avector,Bvector) |
---|---|---|---|
0 or A
|
Y = A | Y[i] = A[i] | Y[i] = A[i] |
1 or B
|
Y = B | Y[i] = B | Y[i] = B[i] |
2 or minimum
|
Y = min(A,B) | Y[i] = min(A[i],B) | Y[i] = min(A[i],B[i]) |
3 or maximum
|
Y = max(A,B) | Y[i] = max(A[i],B) | Y[i] = max(A[i],B[i]) |
with: 0 ≤ i < length of Avector
- See also