vec_add

Purpose

Returns a vector containing the sums of each set of corresponding elements of the given vectors.

Syntax

d=vec_add(a, b)

Result and argument types

The following table describes the types of the returned value and the function arguments.

d a b
vector4double vector4double vector4double

Result value

The value of each element of the result is the sum of the corresponding elements of a and b.

Formula

d[0] = a[0] + b[0]
d[1] = a[1] + b[1]
d[2] = a[2] + b[2]
d[3] = a[3] + b[3]

Example

a =  (10.0, 20.0,  30.0,  40.0)
b =  (50.0, 60.0,  70.0,  80.0)
d: (60.0, 80.0, 100.0, 120.0)