本文整理匯總了Python中cmath.log10方法的典型用法代碼示例。如果您正苦於以下問題:Python cmath.log10方法的具體用法?Python cmath.log10怎麽用?Python cmath.log10使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cmath
的用法示例。
在下文中一共展示了cmath.log10方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: LOG10
# 需要導入模塊: import cmath [as 別名]
# 或者: from cmath import log10 [as 別名]
def LOG10(df, price='Close'):
"""
Base-10 Logarithm
Returns: list of floats = jhta.LOG10(df, price='Close')
"""
return [cmath.log10(df[price][i]).real for i in range(len(df[price]))]
示例2: test_log10
# 需要導入模塊: import cmath [as 別名]
# 或者: from cmath import log10 [as 別名]
def test_log10(self):
self.assertAlmostEqual(complex(0.69897, 0.40272),
cmath.log10(complex(3, 4)))