I am looking to sum the elements of two equal count arrays "element-by-element" to create a new array. So,
let a = [1.0, 2.0, 3.0]
let b = [4.0, 5.0, 6.0]
I want the following new array c
//c = [5.0, 7.0, 9.0]
I think its this function that could do it in Accelerate: vDSP_sveD. But I cannot use it very well.