Search
Search Results
Search finished, found 19 page(s) matching the search query.
- numpy.char.chararray.view
...Legacy fixed-width string functionality numpy.char.chararray numpy.char.chararray.view...
- numpy.char.chararray.view (Python method, in numpy.char.chararray.view)
- NumPy 2.0 migration guide
- numpy.char.chararray
...rarray(shape, itemsize=1, unicode=False, buffer=None, offset=0, strides=None, order=None)[source] Provides a convenient view on arrays of string and unicode values. Note The chararray class exists for backwards compatibility with Numarray,...
- numpy.char.chararray.base
...owns its memory is None: >>> import numpy as np >>> x = np.array([1,2,3,4]) >>> x.base is None True Slicing creates a view, whose memory is shared with x: >>> y = x[2:] >>> y.base is x True...
- numpy.char.chararray.byteswap
...rue, swap bytes in-place, default is False. Returns: outndarrayThe byteswapped array. If inplace is True, this is a view to self. Examples >>> import numpy as np >>> A = np.array([1, 256, 8755], dtype=np.int16) >>> list(map(hex, A))...
- numpy.char.chararray.diagonal
- numpy.char.chararray.dtype
- numpy.char.chararray.flags
- numpy.char.chararray.getfield
- numpy.char.chararray.mT
- numpy.char.chararray.nbytes
- numpy.char.chararray.resize
- numpy.char.chararray.strides
- numpy.char.chararray.swapaxes
- numpy.char.chararray.T
- numpy.char.chararray.transpose
- numpy.char.chararray.view
- Standard array subclasses