本文簡要介紹 python 語言中 numpy.dtype.newbyteorder
的用法。
用法:
dtype.newbyteorder(new_order='S', /)
返回具有不同字節順序的新 dtype。
數據類型的所有字段和子數組也會進行更改。
- new_order: 字符串,可選
字節順序強製;來自以下字節順序規範的值。默認值 (‘S’) 會導致交換當前字節順序。 new_order 代碼可以是以下任何一種:
‘S’ - 將 dtype 從當前交換到相反的字節序
{‘<’, ‘little’} - 小端
{‘>’, ‘big’} - 大端
{‘=’, ‘native’} - 原生訂單
{‘|’, ‘I’} - 忽略(不改變字節順序)
- new_dtype: 類型
具有給定字節順序更改的新 dtype 對象。
參數:
返回:
注意:
數據類型的所有字段和子數組也會進行更改。
例子:
>>> import sys >>> sys_is_le = sys.byteorder == 'little' >>> native_code = sys_is_le and '<' or '>' >>> swapped_code = sys_is_le and '>' or '<' >>> native_dt = np.dtype(native_code+'i2') >>> swapped_dt = np.dtype(swapped_code+'i2') >>> native_dt.newbyteorder('S') == swapped_dt True >>> native_dt.newbyteorder() == swapped_dt True >>> native_dt == swapped_dt.newbyteorder('S') True >>> native_dt == swapped_dt.newbyteorder('=') True >>> native_dt == swapped_dt.newbyteorder('N') True >>> native_dt == native_dt.newbyteorder('|') True >>> np.dtype('<i2') == native_dt.newbyteorder('<') True >>> np.dtype('<i2') == native_dt.newbyteorder('L') True >>> np.dtype('>i2') == native_dt.newbyteorder('>') True >>> np.dtype('>i2') == native_dt.newbyteorder('B') True
相關用法
- Python numpy dtype.ndim用法及代碼示例
- Python numpy dtype.names用法及代碼示例
- Python numpy dtype.num用法及代碼示例
- Python numpy dtype.name用法及代碼示例
- Python numpy dtype.isbuiltin用法及代碼示例
- Python numpy dtype.shape用法及代碼示例
- Python numpy dtype.alignment用法及代碼示例
- Python numpy dtype.__class_getitem__用法及代碼示例
- Python numpy dtype.flags用法及代碼示例
- Python numpy dtype.fields用法及代碼示例
- Python numpy dtype.subdtype用法及代碼示例
- Python numpy dtype.descr用法及代碼示例
- Python numpy dtype.kind用法及代碼示例
- Python numpy dtype.metadata用法及代碼示例
- Python numpy dtype.char用法及代碼示例
- Python numpy dtype.base用法及代碼示例
- Python numpy dtype.byteorder用法及代碼示例
- Python numpy dtype.itemsize用法及代碼示例
- Python numpy dtype用法及代碼示例
- Python numpy diagonal用法及代碼示例
- Python numpy divmod用法及代碼示例
- Python numpy diagflat用法及代碼示例
- Python numpy delete用法及代碼示例
- Python numpy dec.setastest用法及代碼示例
- Python numpy datetime_as_string用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.dtype.newbyteorder。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。