Issue Details
I would like to know how to make a sum of arrays in TestStand (similarly as done in LabVIEW) such as the resulting array contains the sum of each element with its corresponding member index.
I tried a statement using a for loop but the sum is not successful:
Locals.sum = {}, SetNumElements (Locals.sum, GetNumElements (Locals.array1))
for Locals.i = 0 to GetNumElements (Locals.array1) - 1
Locals.sum [Locals.i] = Locals.array1 [Locals.i] + Locals.array2 [Locals.i]
end