Search
Searching.
- numpy.ndarray.view
...Array objects The N-dimensional array (ndarray) numpy.ndarray numpy.ndarray.view...
- numpy.ndarray.view (Python method, in numpy.ndarray.view)
- Array creation
...gn an array or its elements to a new variable, you have to explicitly numpy.copy the array, otherwise the variable is a view into the original array. Consider the following example: >>> import numpy as np >>> a = np.array([1, 2, 3, 4, 5, 6]...
- Array iterator API
...The result points into iter, so the caller does not gain any references to the PyObjects. PyObject *NpyIter_GetIterView(NpyIter *iter, npy_intp i) This gives back a reference to a new ndarray view, which is a view into the i-th object...
- Byte-swapping
...s an object that provides a python array interface to data in memory. It often happens that the memory that you want to view with an array is not of the same byte ordering as the computer on which you are running Python. For example, I migh...
- Constants of the
numpy.ma
module...tes and properties of masked arrays See also Array Attributes ma.MaskedArray.data Returns the underlying data, as a view of the masked array. If the underlying data is a subclass of numpy.ndarray, it is returned as such. >>> x = np.ma.a...
- Copies and views
...NumPy user guide NumPy fundamentals Copies and views...
- How to index
ndarrays
...re x[0, 1, 2]. Index the same ndarray multiple times efficiently It must be kept in mind that basic indexing produces views and advanced indexing produces copies, which are computationally less efficient. Hence, you should take care to us...
- Indexing on
ndarrays
...d, and that what is returned is an array of that dimensionality and size. It must be noted that the returned array is a view, i.e., it is not a copy of the original, but points to the same values in memory as does the original array. In th...
- Internal organization of NumPy arrays
- Interoperability with NumPy
- NumPy 1.10.0 Release Notes
- NumPy 1.11.0 Release Notes
- NumPy 1.12.0 Release Notes
- NumPy 1.14.0 Release Notes
- NumPy 1.15.0 Release Notes
- NumPy 1.16.0 Release Notes
- NumPy 1.17.0 Release Notes
- NumPy 1.20.0 Release Notes
- NumPy 1.23.0 Release Notes
- NumPy 1.24 Release Notes
- NumPy 1.25.0 Release Notes
- NumPy 1.7.0 Release Notes
- NumPy 1.8.0 Release Notes
- NumPy 1.9.0 Release Notes
- NumPy 1.9.2 Release Notes
- NumPy 2.0 migration guide
- NumPy C code explanations
- NumPy for MATLAB users
- NumPy fundamentals
- NumPy quickstart
- NumPy user guide
- numpy.asanyarray
- numpy.asarray
- numpy.atleast_2d
- numpy.atleast_3d
- numpy.char.chararray.byteswap
- numpy.char.chararray.dtype
- numpy.char.chararray.flags
- numpy.char.chararray.strides
- numpy.char.chararray.transpose
- numpy.char.chararray.view
- numpy.diag
- numpy.diagonal
- numpy.einsum
- numpy.expand_dims
- numpy.fft.fft2
- numpy.fft.fftn
- numpy.fft.ifft2
- numpy.fft.ifftn
- numpy.fliplr
- numpy.from_dlpack
- numpy.frombuffer
- numpy.i: a SWIG interface file for NumPy
- numpy.lib.format
- numpy.lib.stride_tricks.as_strided
- numpy.lib.stride_tricks.sliding_window_view
- numpy.ma.atleast_2d
- numpy.ma.atleast_3d
- numpy.ma.expand_dims
- numpy.ma.frombuffer
- numpy.ma.masked_array.byteswap
- numpy.ma.masked_array.data
- numpy.ma.masked_array.dtype
- numpy.ma.masked_array.filled
- numpy.ma.masked_array.flags
- numpy.ma.masked_array.ptp
- numpy.ma.masked_array.reshape
- numpy.ma.masked_array.strides
- numpy.ma.masked_array.transpose
- numpy.ma.masked_array.view
- numpy.ma.MaskedArray.byteswap
- numpy.ma.MaskedArray.dtype
- numpy.ma.MaskedArray.filled
- numpy.ma.MaskedArray.flags
- numpy.ma.MaskedArray.ptp
- numpy.ma.MaskedArray.reshape
- numpy.ma.MaskedArray.strides
- numpy.ma.MaskedArray.transpose
- numpy.ma.MaskedArray.view
- numpy.ma.MaskType.view
- numpy.ma.ptp
- numpy.matrix
- numpy.matrix.byteswap
- numpy.matrix.dtype
- numpy.matrix.flags
- numpy.matrix.strides
- numpy.matrix.transpose
- numpy.matrix.view
- numpy.memmap
- numpy.memmap.byteswap
- numpy.memmap.dtype
- numpy.memmap.flags
- numpy.memmap.strides
- numpy.memmap.transpose
- numpy.memmap.view
- numpy.meshgrid
- numpy.moveaxis
- numpy.ndarray