I have a 1D float64 array ts. I want to square each element, so I compute
  x = ts * ts

I get a floating point overflow error.

However, when I access each element separately and multiple, I get no error:
  for i in ts.shape[0]:
_______________________________________________
NumPy-Discussion mailing list
[email protected]
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to