本文簡要介紹 python 語言中 numpy.imag
的用法。
用法:
numpy.imag(val)
返回複數參數的虛部。
- val: array_like
輸入數組。
- out: ndarray 或標量
複雜論證的虛部。如果 val 是實數,則 val 的類型用於輸出。如果 val 具有複雜元素,則返回類型為 float。
參數:
返回:
例子:
>>> a = np.array([1+2j, 3+4j, 5+6j]) >>> a.imag array([2., 4., 6.]) >>> a.imag = np.array([8, 10, 12]) >>> a array([1. +8.j, 3.+10.j, 5.+12.j]) >>> np.imag(1 + 1j) 1.0
相關用法
- Python numpy isclose用法及代碼示例
- Python numpy issctype用法及代碼示例
- Python numpy isnat用法及代碼示例
- Python numpy is_busday用法及代碼示例
- Python numpy isposinf用法及代碼示例
- Python numpy issubdtype用法及代碼示例
- Python numpy issubclass_用法及代碼示例
- Python numpy interp用法及代碼示例
- Python numpy issubsctype用法及代碼示例
- Python numpy iscomplexobj用法及代碼示例
- Python numpy iinfo用法及代碼示例
- Python numpy in1d用法及代碼示例
- Python numpy indices用法及代碼示例
- Python numpy isfinite用法及代碼示例
- Python numpy ix_用法及代碼示例
- Python numpy iscomplex用法及代碼示例
- Python numpy isin用法及代碼示例
- Python numpy insert用法及代碼示例
- Python numpy i0用法及代碼示例
- Python numpy intersect1d用法及代碼示例
- Python numpy isinf用法及代碼示例
- Python numpy identity用法及代碼示例
- Python numpy isrealobj用法及代碼示例
- Python numpy ipmt用法及代碼示例
- Python numpy isscalar用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.imag。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。