Search
Search Results
Search finished, found 8 page(s) matching the search query.
- numpy.memmap.flatten
...numpy.memmap.flatten...
- numpy.memmap.flatten (Python method, in numpy.memmap.flatten)
- NumPy 1.12.0 Release Notes
...y given axis. np.count_nonzero now has an axis parameter, allowing non-zero counts to be generated on more than just a flattened array object. BLIS support in numpy.distutils Building against the BLAS implementation provided by the BLIS...
- numpy.memmap.flat
...mpy.flatiter instance, which acts similarly to, but is not a subclass of, Python’s built-in iterator object. See also flattenReturn a copy of the array collapsed into one dimension. flatiter Examples >>> import numpy as np >>> x = np.a...
- numpy.memmap.flatten
...numpy.memmap.flatten...
- numpy.memmap.ravel
...numpy.memmap.ravel method memmap.ravel([order]) Return a flattened array. Refer to numpy.ravel for full documentation. See also numpy.ravelequivalent function ndarray.flata f...
- numpy.memmap.resize
...this array with another Python object, then you may safely set refcheck to False. Examples Shrinking an array: array is flattened (in the order that the data are stored in memory), resized, and reshaped: >>> import numpy as np >>> a = np....
- Structured arrays
...e,)], fill_value=(999999,), dtype=[('a', '<i8')]), array([0, 1, 3, 4])) numpy.lib.recfunctions.flatten_descr(ndtype)[source] Flatten a structured data-type description. Examples >>> import numpy as np >>> from numpy...