Add
Add two or more values of any numeric type (element-wise). This includes simple values, tuples, arrays, and arrays of tuples. If one input has a higher dimension than the other, then the input with lower dimension will be repeated to match the dimension of the other input (broadcasting). eg: scalar + tuple, tuple + array of tuples, scalar + array of tuples.
Installation
To use this Node, you must enable omni.graph.nodes
in the Extension Manager.
Inputs
Name |
Type |
Description |
Default |
---|---|---|---|
a |
|
First number or collection of numbers to add |
|
b |
|
Second number or collection of numbers to add |
Outputs
Name |
Type |
Description |
Default |
---|---|---|---|
sum |
|
Sum of the two numbers or collection of numbers |