I have 2 arrays: data = (680,) and sigma2=(680,1).
I need to do data_s= data/sigma2, but if I perform like it is, the output is data_s=(680,680), while I need to obtain data_s=(680,1).
I think I have to convert my data one-tuple with size (680,) into a pair tuple with size (680,1).
How can I do it?
Thanks in advance for the reply.