Programmer Guide/SPU Reference/DIV: Difference between revisions
From STX Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 18: | Line 18: | ||
|} | |} | ||
with: 0 ≤ i < length of <var>A<sub>vector</sub></var> | with: 0 ≤ i < length of <var>A<sub>vector</sub></var> | ||
note: if <var>B</var> (<var>B</var>[i]) equals 0, the output <var>Y</var> (<var>Y</var>[i]) is set to 0. | note: if <var>B</var> (<var>B</var>[i]) equals 0, the output <var>Y</var> (<var>Y</var>[i]) is set to 0. | ||
;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 12:03, 2 May 2011
Multiply inputs A and B.
[SPU MUL A B OUT Y]
In | Out | Description |
---|---|---|
Anumber, Bnumber | Ynumber | Y = A / B |
Avector, Bnumber | Yvector | Y[i] = A[i] / B |
Avector, Bvector | Yvector | Y[i] = A[i] / B[i] |
with: 0 ≤ i < length of Avector
note: if B (B[i]) equals 0, the output Y (Y[i]) is set to 0.
- See also
<SP-atoms>