[Numpy-discussion] Getting an array interface and using it
Christopher Barker
Chris.Barker@noaa....
Mon Nov 12 13:04:32 CST 2007
Matthieu Brucher wrote:
> I have an object that exposes an array interface. I want to modify the
> data it contains, but using numpy.array(myObject) seems to copy the data
> and thus my object is not modified. Am I mistaken or did I make a
> mistake in my array interface ?
I think numpy.array(object) always makes a copy.
You want numpy.asarray(object) which will make a view if object exposes
the array interface and matches the type and sizes requested.
-Chris
--
Christopher Barker, Ph.D.
Oceanographer
Emergency Response Division
NOAA/NOS/OR&R (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception
Chris.Barker@noaa.gov
More information about the Numpy-discussion
mailing list