作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要 EllipticTheta mathematica中的函数,不知道numpy中有没有对应的函数。尤其是第二种吧。
最佳答案
试试这个:http://www.google.com/search?q=python+elliptic+theta
mpmath 具有 jacobi theta 函数:
http://docs.sympy.org/0.7.6/modules/mpmath/functions/elliptic.html#jacobi-theta-functions
如果你想要一个向量化的函数,你可以这样写
import mpmath
import numpy as np
jtheta = np.vectorize(mpmath.jtheta, 'D')
print(jtheta(1,2,1j*np.linspace(0,0.9,15)))
请注意,np.vectorize
不会加速它——它只是允许它直接在数组输入上工作。 mpmath 函数与套利。精度 float ,所以它们有时会比等价物慢以机器精度 fp 实现的功能。
关于numpy - numpy 中有 elliptictheta 函数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33169101/
我需要 EllipticTheta mathematica中的函数,不知道numpy中有没有对应的函数。尤其是第二种吧。 最佳答案 试试这个:http://www.google.com/search?
我是一名优秀的程序员,十分优秀!