What is the difference between NumPy's np.array and np.asarray? When should I use one rather than the other? They seem to generate identical output.
What is the difference between np.array() and np.asarray()?
Answer a question
Answers
Since other questions are being redirected to this one which ask about asanyarray or other array creation routines, it's probably worth having a brief summary of what each of them does.
The differences are mainly about when to return the input unchanged, as opposed to making a new array as a copy.
array offers a wide variety of options (most of the other functions are thin wrappers around it), including flags to determine when to copy. A full explanation would take just as long as the docs (see Array Creation, but briefly, here are some examples:
Assume a is an ndarray, and m is a matrix, and they both have a dtype of float32:
np.array(a)andnp.array(m)will copy both, because that's the default behavior.np.array(a, copy=False)andnp.array(m, copy=False)will copymbut nota, becausemis not anndarray.np.array(a, copy=False, subok=True)andnp.array(m, copy=False, subok=True)will copy neither, becausemis amatrix, which is a subclass ofndarray.np.array(a, dtype=int, copy=False, subok=True)will copy both, because thedtypeis not compatible.
Most of the other functions are thin wrappers around array that control when copying happens:
asarray: The input will be returned uncopied iff it's a compatiblendarray(copy=False).asanyarray: The input will be returned uncopied iff it's a compatiblendarrayor subclass likematrix(copy=False,subok=True).ascontiguousarray: The input will be returned uncopied iff it's a compatiblendarrayin contiguous C order (copy=False,order='C').asfortranarray: The input will be returned uncopied iff it's a compatiblendarrayin contiguous Fortran order (copy=False,order='F').require: The input will be returned uncopied iff it's compatible with the specified requirements string.copy: The input is always copied.fromiter: The input is treated as an iterable (so, e.g., you can construct an array from an iterator's elements, instead of anobjectarray with the iterator); always copied.
There are also convenience functions, like asarray_chkfinite (same copying rules as asarray, but raises ValueError if there are any nan or inf values), and constructors for subclasses like matrix or for special cases like record arrays, and of course the actual ndarray constructor (which lets you create an array directly out of strides over a buffer).
更多推荐

所有评论(0)