0
A
回答
5
是的,你可以。在模塊math
中有特殊功能編碼,如Gamma功能。
看here
2
我會用scipy.special.gamma()
。
0
如果你想深入Python和其他方法,我會建議你看看numpy和scipy庫。
伽瑪功能可以那麼容易,因爲
from scipy.stats import gamma
a = 1.99323054838
rv = gamma(a)
就是這樣,檢查https://docs.scipy.org/doc/scipy-0.15.1/reference/generated/scipy.stats.gamma.html#scipy.stats.gamma獲取更多信息和https://www.scipy.org/,如果你想了解更多關於使用Python的科學計算。
+3
這與歐拉伽馬的伽馬不同。 – Batman
相關問題
- 1. python中不完整的gamma函數?
- 2. 任意精度gamma函數
- 3. 如何繪製python中的alpha和beta參數的gamma分佈
- 4. SVM的gamma和cost參數
- 5. gamma或KineticJS中的曲線
- 6. Gamma分佈
- 7. 如何執行kolmogorov-Smirnov測試以測試Gamma函數?
- 8. Python中的函數
- 9. python中的函數
- 10. Python中的%函數
- 11. 將Gamma/RGB曲線轉換爲不含gamma的RGB曲線
- 12. Python中的函數內的函數
- 13. 函數中的Python參數
- 14. 函數中的參數python
- 15. Python中函數的參數
- 16. 整體亮度/ gamma?
- 17. 函數錯誤中的Python函數?
- 18. 調用函數中的函數[Python]
- 19. 從Python中的函數返回函數
- 20. Python中的函數調用函數
- 21. 將1.8的Gamma應用到NSImage中
- 22. C++中的Gamma分佈隨機變量
- 23. 如何繪製ggplot2中的Gamma分佈
- 24. Python中的中斷函數
- 25. Python中的函數到PHP
- 26. 函數中的Python變量?
- 27. Python中的Dir函數
- 28. Python中的構造函數
- 29. Python中函數的別名
- 30. python中的mainloop()函數
如果你想要一個任意的精度伽馬函數,看看[mpmath](http://mpmath.org/doc/current/functions/gamma.html)。 –
看起來像它在標準庫中。 '來自數學進口gamma; gamma(10);' –
@AsadSaeeduddin當然(如果你有Python 2.7或更高版本)。但與mpmath版本不同,它不處理複數(並且cmath中沒有gamma),當然這不是任意的精確度。 –