In the vDSP functions of the Accelerate Framework, all the functions require you to input a result vector. Is it correct to pass the input vector (or one of the input vectors) as the result vector if I no longer need whatever was in the original input vector?
Example of what I mean:
vDSP_vsadd(input_vector,1,scalar_addition,input_vector,1,length);
This would take the input_vector and add a scalar_addition to all the elements. The result would be stored in the input_vector.