Search
Search Results
Search finished, found 12 page(s) matching the search query.
- numpy.memmap.flags
...numpy.memmap.flags...
- numpy.memmap.flags (Python attribute, in numpy.memmap.flags)
- NumPy 1.10.2 Release Notes
...3.5 testing. gh-6474 REL: Update Paver script for sdist and auto-switch test warnings. gh-6478 BUG: Fix Intel compiler flags for OS X build. gh-6481 MAINT: LIBPATH with spaces is now supported Python 2.7+ and Win32. gh-6487 BUG: Allow nest...
- NumPy 1.6.0 Release Notes
...removed from the numpy.ma module: * ``numpy.ma.MaskedArray`` "raw_data" method * ``numpy.ma.MaskedArray`` constructor "flag" keyword * ``numpy.ma.make_mask`` "flag" keyword * ``numpy.ma.allclose`` "fill_value" keyword numpy.distutils T...
- NumPy 2.0.0 Release Notes
...efined in ndarraytypes.h. (gh-25812) Due to runtime dependencies, the definition for functionality accessing the dtype flags was moved from numpy/ndarraytypes.h and is only available after including numpy/ndarrayobject.h as it requires imp...
- numpy.memmap
...11.]], dtype=float32) Read-only memmap: >>> fpr = np.memmap(filename, dtype='float32', mode='r', shape=(3,4)) >>> fpr.flags.writeable False Copy-on-write memmap: >>> fpc = np.memmap(filename, dtype='float32', mode='c', shape=(3,4)) >>>...
- numpy.memmap.copy
...opy() >>> x.fill(0) >>> x array([[0, 0, 0], [0, 0, 0]]) >>> y array([[1, 2, 3], [4, 5, 6]]) >>> y.flags['C_CONTIGUOUS'] True For arrays containing Python objects (e.g. dtype=object), the copy is a shallow one. The ne...
- numpy.memmap.ctypes
...ay contain data that is not aligned, or not in correct byte-order. The memory area may not even be writeable. The array flags and data-type of this array should be respected when passing this attribute to arbitrary C-code to avoid trouble t...
- numpy.memmap.flags
...numpy.memmap.flags...
- numpy.memmap.setflags
- numpy.memmap.setflags (Python method, in numpy.memmap.setflags)
- Structured arrays