I would like to replace by zero value all my masked values in 2D array. I saw with np.copyto it was apparently possible to do that as :
test=np.copyto(array, 0, where = mask)
But i have an error message...'module' object has no attribute 'copyto'. Is there an equivalent way to do that?
Try numpy.ma.filled() I think this is exactly what you need