Search
Search Results
Search finished, found 25 page(s) matching the search query.
- numpy.memmap.size
...numpy.memmap.size...
- numpy.memmap.size (Python attribute, in numpy.memmap.size)
- NumPy 1.10.2 Release Notes
...anging the shape. This effectively bars viewing a multidimensional Fortran array using a dtype that changes the element size along the first axis. The reason for the deprecation is that, when relaxed strides checking is enabled, arrays that...
- NumPy 1.12.0 Release Notes
...fied axis is shifted accordingly. The __complex__ method has been implemented for the ndarrays Calling complex() on a size 1 array will now cast to a python complex. pathlib.Path objects now supported The standard np.load, np.save, np.l...
- NumPy 1.13.0 Release Notes
...orms of indexing. C API changes GUfuncs on empty arrays and NpyIter axis removal It is now allowed to remove a zero-sized axis from NpyIter. Which may mean that code removing axes from NpyIter has to add an additional check when accessi...
- NumPy 1.25.0 Release Notes
...precated. Use np.all instead. (gh-23314) Only ndim-0 arrays are treated as scalars. NumPy used to treat all arrays of size 1 (e.g., np.array([3.14])) as scalars. In the future, this will be limited to arrays of ndim 0 (e.g., np.array(3.1...
- NumPy 1.6.0 Release Notes
...o get the correct mapping of values without playing unnatural tricks with the domain. Fortran assumed shape array and size function support in numpy.f2py F2py now supports wrapping Fortran 90 routines that use assumed shape arrays. Befor...
- NumPy 1.7.2 Release Notes
...3458: array_ass_boolean_subscript() writes ‘non-existent’ data to array gh-2892: Regression in ufunc.reduceat with zero-sized index array gh-3608: Regression when filling struct from tuple gh-3701: add support for Python 3.4 ast.NameConstan...
- NumPy 2.0.0 Release Notes
...: np.FLOATING_POINT_SUPPORT, np.FPE_*, np.NINF, np.PINF, np.NZERO, np.PZERO, np.CLIP, np.WRAP, np.WRAP, np.RAISE, np.BUFSIZE, np.UFUNC_BUFSIZE_DEFAULT, np.UFUNC_PYVALS_NAME, np.ALLOW_THREADS, np.MAXDIMS, np.MAY_SHARE_EXACT, np.MAY_SHARE_BOU...
- NumPy 2.2.0 Release Notes
...nstead. (gh-27735) Expired deprecations bool(np.array([])) and other empty arrays will now raise an error. Use arr.size > 0 instead to check whether an array has no elements. (gh-27160) Compatibility notes numpy.cov now properly t...
- numpy.lib.Arrayterator
- numpy.lib.format.open_memmap
- numpy.load
- numpy.memmap
...file, array data starts at this offset. Since offset is measured in bytes, it should normally be a multiple of the byte-size of dtype. When mode != 'r', even positive offsets beyond end of file are valid; The file will be extended to accomm...
- numpy.memmap.getfield
- numpy.memmap.item
- numpy.memmap.resize
...numpy.memmap.resize...
- numpy.memmap.shape
- numpy.memmap.size
...numpy.memmap.size...
- numpy.memmap.tofile
- numpy.memmap.view
...ple, converting a regular array to a structured array), then the last axis of a must be contiguous. This axis will be resized in the result. Changed in version 1.23.0: Only the last axis needs to be contiguous. Previously, the entire array...
- Reading and writing files
- numpy.memmap.itemsize (Python attribute, in numpy.memmap.itemsize)
- numpy.memmap.resize (Python method, in numpy.memmap.resize)
- Structured arrays