Hello,
I have multiple float arrays that represent different node Y positions over time.
I want to get the sum of all the elements of an array. 
for argument sake, here are my arrays.
float $a[] = "0,1,2,3,4,5";
float $b[] = "0,2,4,6,8,10,12,14";
how to I get to add up all the numbers?
i want to get 
float $sumofa = 15;
float $sumofb = 56;
thanks