Programmer Guide/SPU Reference/MOD: Difference between revisions
From STX Wiki
Jump to navigationJump to search
(initial import) |
m (1 revision: Initial import) |
(No difference)
|
Revision as of 17:31, 18 November 2010
Contents
MOD
Usage:
MOD a b
Inputs:
a | number or vector |
b | number or vector |
Outputs:
y | number or vector (same type as a) |
Function:
Compute a modulo b.
if a and b are numbers: y = a mod b
if a is a vector and b a number: y[i] = a[i] mod b
if a and b are vectors: y[i] = a[i] mod b[i]
If the value of b|b[i] is zero, the result y|y[i] is also set to zero.