Search
Search Results
Search finished, found 25 page(s) matching the search query.
- numpy.char.chararray.data (Python attribute, in numpy.char.chararray.data)
- NumPy 1.10.0 Release Notes
...can now be used with periodic functions np.interp now has a new parameter period that supplies the period of the input data xp. In such case, the input data is properly normalized to the given period and one end point is added to each extr...
- NumPy 2.0 migration guide
...pply the NumPy 2.0 rule directly from the command line: $ ruff check path/to/code/ --select NPY201 Changes to NumPy data type promotion NumPy 2.0 changes promotion (the result of combining dissimilar data types) as per NEP 50. Please se...
- NumPy 2.0.0 Release Notes
...vior was changed by adopting NEP 50. This fixes many user surprises about promotions which previously often depended on data values of input arrays rather than only their dtypes. Please see the NEP and the NumPy 2.0 migration guide for det...
- numpy.char.asarray
...rray char.asarray(obj, itemsize=None, unicode=None, order=None)[source] Convert the input to a chararray, copying the data only if necessary. Versus a NumPy array of dtype bytes_ or str_, this class adds the following functionality: valu...
- numpy.char.chararray
...Default is False. bufferobject exposing the buffer interface or str, optionalMemory address of the start of the array data. Default is None, in which case a new array is created. offsetint, optionalFixed stride displacement from the beg...
- numpy.char.chararray.astype
...unsafe', subok=True, copy=True) Copy of the array, cast to a specified type. Parameters: dtypestr or dtypeTypecode or data-type to which the array is cast. order{‘C’, ‘F’, ‘A’, ‘K’}, optionalControls the memory layout order of the result...
- numpy.char.chararray.byteswap
...char.chararray.byteswap(inplace=False) Swap the bytes of the array elements Toggle between low-endian and big-endian data representation by returning a byteswapped array, optionally swapped in-place. Arrays of byte-strings are not swappe...
- numpy.char.chararray.ctypes
...es it easier to use arrays when calling shared libraries with the ctypes module. The returned object has, among others, data, shape, and strides attributes (see Notes below) which themselves return ctypes objects that can be used as argumen...
- numpy.char.chararray.data
...numpy.char.chararray.data...
- numpy.char.chararray.dtype
...numpy.char.chararray.dtype attribute char.chararray.dtype Data-type of the array’s elements. Warning Setting arr.dtype is discouraged and may be deprecated in the future. Setti...
- numpy.char.chararray.flags
...The array flags cannot be set arbitrarily: WRITEBACKIFCOPY can only be set False. ALIGNED can only be set True if the data is truly aligned. WRITEABLE can only be set True if the array owns its own memory or the ultimate owner of the memo...
- numpy.char.chararray.getfield
- numpy.char.chararray.item
- numpy.char.chararray.reshape
- numpy.char.chararray.resize
- numpy.char.chararray.setfield
- numpy.char.chararray.setflags
- numpy.char.chararray.strides
- numpy.char.chararray.tobytes
- numpy.char.chararray.tofile
- numpy.char.chararray.tolist
- numpy.char.chararray.transpose
- numpy.char.chararray.view
- Standard array subclasses