Numpy 的 imag
屬性返回一個包含數組虛部的 Numpy 數組。
例子
假設我們有以下包含複數的數組:
x = np.array([5+2j, 3+4j])
x
array([5.+2.j, 3.+4.j])
要獲取真實零件:
x.imag
array([2., 4.])
相關用法
- Python image轉binary用法及代碼示例
- Python imaplib.IMAP4.search用法及代碼示例
- Python imaplib.IMAP4用法及代碼示例
- Python imaplib.IMAP4.store用法及代碼示例
- Python import__用法及代碼示例
- Python importlib.reload用法及代碼示例
- Python imp.reload用法及代碼示例
- Python Django import_string用法及代碼示例
- Python OpenCV imdecode()用法及代碼示例
- Python importlib.util.LazyLoader.factory用法及代碼示例
- Python NumPy itemset方法用法及代碼示例
- Python isinstance方法用法及代碼示例
- Python BeautifulSoup insert方法用法及代碼示例
- Python itertools.takewhile用法及代碼示例
- Python id()用法及代碼示例
- Python ipaddress.collapse_addresses用法及代碼示例
- Python ipaddress.IPv4Address.reverse_pointer用法及代碼示例
- Python io.text_encoding用法及代碼示例
- Python string isidentifier()用法及代碼示例
- Python numpy irr用法及代碼示例
- Python ipaddress.IPv4Address.__format__用法及代碼示例
- Python calendar isleap()用法及代碼示例
- Python math isclose()用法及代碼示例
- Python NumPy isalnum方法用法及代碼示例
- Python NumPy isnat方法用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | imag property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。