在此numpy.real_if_close()函數中,如果複雜輸入返回實數數組,則複雜部分接近於零。
用法: numpy.real_if_close(arr, tol = 100)
參數:
arr:[數組]輸入數組。
tol:[浮點數] “Close to zero”定義為tol。數組中元素的複雜部分的機器ε公差。
Return :[ndarray]如果arr是實數,則將arr的類型用於輸出。如果arr具有複雜元素,則返回的類型為float。
代碼1:
# Python program explaining
# numpy.real_if_close() function
# importing numpy as geek
import numpy as geek
arr = [3.6 + 4e-14j]
tol = 1000
gfg = geek.real_if_close(arr, tol)
print (gfg)
輸出:
[3.6]
代碼2:
# Python program explaining
# numpy.real_if_close() function
# importing numpy as geek
import numpy as geek
arr = [3.6 + 2e-11j]
tol = 1000
gfg = geek.real_if_close(arr, tol)
print (gfg)
輸出:
[3.6+2.e-11j]
相關用法
- Python Wand function()用法及代碼示例
- Python now()用法及代碼示例
- Python id()用法及代碼示例
- Python tell()用法及代碼示例
- Python sum()用法及代碼示例
- Python str()用法及代碼示例
- Python cmp()用法及代碼示例
- Python ord()用法及代碼示例
- Python dir()用法及代碼示例
- Python hex()用法及代碼示例
- Python int()用法及代碼示例
- Python map()用法及代碼示例
- Python oct()用法及代碼示例
- Python math.sin()用法及代碼示例
- Python bytearray()用法及代碼示例
- Python math.tan()用法及代碼示例
注:本文由純淨天空篩選整理自sanjoy_62大神的英文原創作品 numpy.real_if_close() function – Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。