Search
Search Results
Search finished, found 23 page(s) matching the search query.
- numpy.record.copy
...NumPy reference Array objects Standard array subclasses numpy.record numpy.record.copy...
- numpy.record.copy (Python method, in numpy.record.copy)
- NumPy 1.10.2 Release Notes
...ay via descr. gh-6775 MAINT: Include from __future__ boilerplate in some files missing it. gh-6780 BUG: metadata is not copied to base_dtype. gh-6783 BUG: Fix travis ci testing for new google infrastructure. gh-6785 BUG: Quick and dirty fix...
- NumPy 1.12.0 Release Notes
...ickly result in these (or similar) warnings not being tested reliably. The context manager allows to filter (as well as record) warnings similar to the catch_warnings context, but allows for easier specificity. Also printing warnings that h...
- NumPy 1.13.0 Release Notes
...if_overlap argument. If copy_if_overlap != 0, checks if input has memory overlap with any of the other arrays and make copies as appropriate to avoid problems if the input is modified during the iteration. See the documentation for more co...
- NumPy 1.14.1 Release Notes
...w to handle new array printing #10403: BUG: Set einsum optimize parameter default to False. #10424: ENH: Fix repr of np.record objects to match np.void types #10412 #10425: MAINT: Update zesty to artful for i386 testing #10431: REL: Add 1.1...
- NumPy 1.16.0 Release Notes
...ing a deprecation cycle begun in NumPy 1.4. Use numpy.unique instead. multi-field indexing now returns views instead of copies, finishing a deprecation cycle begun in NumPy 1.7. The change was previously attempted in NumPy 1.14 but reverted...
- NumPy 1.19.0 Release Notes
...default. (gh-15685) numpy.linalg.multi_dot now accepts an out argument out can be used to avoid creating unnecessary copies of the final product computed by numpy.linalg.multidot. (gh-15715) keepdims parameter for numpy.count_nonzero T...
- NumPy 1.7.0 Release Notes
...e the documentation for np.diagonal for details. Similar to np.diagonal above, in a future version of numpy, indexing a record array by a list of field names will return a view onto the original array, instead of producing a copy as they do...
- numpy.char.chararray.view
...array: >>> z = x.view(np.recarray) >>> z.a array([1, 3], dtype=int8) Views share data: >>> x[0] = (9, 10) >>> z[0] np.record((9, 10), dtype=[('a', 'i1'), ('b', 'i1')]) Views that change the dtype size (bytes per entry) should normally b...
- numpy.lib.format.drop_metadata
- numpy.matrix.view
- numpy.memmap.view
- numpy.ndarray.view
- numpy.rec.array
- numpy.recarray.view
- numpy.record.copy
...NumPy reference Array objects Standard array subclasses numpy.record numpy.record.copy...
- NumPy: the absolute basics for beginners
...notation can be used for indexing. >>> a[:3] array([10, 2, 3]) One major difference is that slice indexing of a list copies the elements into a new list, but slicing an array returns a view: an object that refers to the data in the origi...
- Standard array subclasses
...that white-space at the end of any element in the array will be ignored on item retrieval and comparison operations. Record arrays See also Creating record arrays, Data type routines, Data type objects (dtype). NumPy provides the recar...
- Structured arrays
- Array API
- Glossary
- Indexing on
ndarrays