a + b
Component-wise addition of two n-dimensional vectors. Target is used to store the results.
Left operand
Right operand
Target for storing the results (Default: a)
Resulting vector
add([1, 2], [3, 4], new Array(2)); // Returns: [4, 6] Copy
add([1, 2], [3, 4], new Array(2)); // Returns: [4, 6]
Generated using TypeDoc
a + b
Component-wise addition of two n-dimensional vectors. Target is used to store the results.