Given two Float64 arrays x and y of the same shape, is x[:]=y the correct way to *efficiently* copy all values from one array into the other?
Basically, I would like the equivalent of memcpy, just copying memory, and doing no extra work.
Given two Float64 arrays x and y of the same shape, is x[:]=y the correct way to *efficiently* copy all values from one array into the other?
Basically, I would like the equivalent of memcpy, just copying memory, and doing no extra work.