Programmer Guide/SPU Reference/ADD: 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
ADD
Add values of inputs a and b.
if a and b are numbers: y = a+b
if a is a vector and b a number: y[i] = a[i]+b
if a and b are vectors: y[i] = a[i]+b[i]
Usage:
ADD a b
Inputs:
- a
- A number or vector.
- b
- A number or vector.
Outputs:
- y
- A number or vector (same type as a).