Search
Search Results
Search finished, found 15 page(s) matching the search query.
- numpy.frombuffer
...NumPy reference Routines and objects by topic Array creation routines numpy.frombuffer...
- numpy.frombuffer (Python function, in numpy.frombuffer)
- numpy.ma.frombuffer (Python data, in numpy.ma.frombuffer)
- NumPy 1.14.0 Release Notes
...g with the default value of the sep argument is deprecated. When that argument is not provided, a broken version of np.frombuffer is used that silently accepts unicode strings and – after encoding them as either utf-8 (python 3) or the def...
- NumPy 1.17.0 Release Notes
...t contain assert x.mask is not y.mask or similar will need to be updated. Do not lookup __buffer__ attribute in numpy.frombuffer Looking up __buffer__ attribute in numpy.frombuffer was undocumented and non-functional. This code was remove...
- NumPy 1.22.4 Release Notes
...ux guard per #21386 #21445: BUG: Allow legacy dtypes to cast to datetime again #21446: BUG: Make mmap handling safer in frombuffer #21447: BUG: Stop using PyBytesObject.ob_shash deprecated in Python 3.11. #21448: ENH: Introduce numpy.core.s...
- numpy.char.chararray.tobytes
...guous, ‘C’ otherwise. Default is ‘C’. Returns: sbytesPython bytes exhibiting a copy of a’s raw data. See also frombufferInverse of this operation, construct a 1-dimensional array from Python bytes. Examples >>> import numpy as...
- numpy.frombuffer
...NumPy reference Routines and objects by topic Array creation routines numpy.frombuffer...
- numpy.fromstring
...mode interprets string as binary bytes, rather than ASCII text with decimal numbers, an operation which is better spelt frombuffer(string, dtype, count). If string contains unicode text, the binary mode of fromstring will first encode it in...
- numpy.ma.frombuffer
...NumPy reference NumPy’s module structure Masked array operations numpy.ma.frombuffer...
- numpy.matrix.tobytes
...guous, ‘C’ otherwise. Default is ‘C’. Returns: sbytesPython bytes exhibiting a copy of a’s raw data. See also frombufferInverse of this operation, construct a 1-dimensional array from Python bytes. Examples >>> import numpy as...
- numpy.memmap.tobytes
...guous, ‘C’ otherwise. Default is ‘C’. Returns: sbytesPython bytes exhibiting a copy of a’s raw data. See also frombufferInverse of this operation, construct a 1-dimensional array from Python bytes. Examples >>> import numpy as...
- numpy.ndarray.tobytes
...guous, ‘C’ otherwise. Default is ‘C’. Returns: sbytesPython bytes exhibiting a copy of a’s raw data. See also frombufferInverse of this operation, construct a 1-dimensional array from Python bytes. Examples >>> import numpy as...
- numpy.rec.fromstring
...rayRecord array view into the data in datastring. This will be readonly if datastring is readonly. See also numpy.frombuffer Examples >>> a = b'\x01\x02\x03abc' >>> np.rec.fromstring(a, dtype='u1,u1,u1,S3') rec.array([(1, 2, 3, b'ab...
- numpy.recarray.tobytes
...guous, ‘C’ otherwise. Default is ‘C’. Returns: sbytesPython bytes exhibiting a copy of a’s raw data. See also frombufferInverse of this operation, construct a 1-dimensional array from Python bytes. Examples >>> import numpy as...