python中factorial_python如何区分factorial函数和gamma函数

伽玛值也可以使用factorial(x-1),但用gamma()是因为,如果我们比较两个函数来实现类似的任务,gamma()提供更好的性能。

代码#:比较factorial()和gamma()

# Python code to demonstrate

# factorial() vs gamma()

import math

import time

# initializing argument

gamma_var = 6

# checking performance

# gamma() vs factorial()

start_fact = time.time()

res_fact = math.factorial(gamma_var-1)

print ("The gamma value using factorial is : "

+ str(res_fact))

print ("The time taken to compute is : "

+ str(time.time() - start_fact))

print ('\n')

start_gamma = time.time()

res_gamma = math.gamma(gamma_var)

print ("The gamma value using gamma() is : "

+ str(res_gamma))

print ("The time taken to compute is : "

+ str(time.time() - start_gamma))

输出:The gamma value using factorial is : 120

The time taken to compute is : 9.059906005859375e-06

The gamma value using gamma() is : 120.0

The time taken to compute is : 5.245208740234375e-06

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值