admin管理员组文章数量:1345325
I have been working with numpy arrays that require a specific carve, due to a rare area in scipy that doesn't work as planned.
Therefore, I need to use mpmath for that area, and then I want to recombine the array for further operations that depend upon the original array position.
import mpmath as mp
from scipy.special import hyp2f1 as sc_hyp2f1
def carve(z):
"""Scipy hyp2f1 cannot deal with a specific region."""
return (np.abs(z) > 0.9) & (np.abs(z) < 1.1) & (np.abs(1 - z) >= 0.9) & (z.real >= 0)
def hf2(z, a, b, c):
"""Wrapper to handle hyp2f1"""
mp_hyp2f1 = np.frompyfunc(mp.hyp2f1, 4, 1)
f_idx = carve(z)
zm = z[f_idx] # values for mpmath (slow!)
zs = z[~f_idx] # values for scipy (fast!)
ma = mp_hyp2f1(a, b, c, zm).astype(npplex128)
sa = sc_hyp2f1(a, b, c, zs)
return np.hstack([sa, ma]) # Eep! All the values have been moved!
I have left out the (minimal) logic that avoids attempting to evaluate empty areas.
Hmm I think I have the answer to this..
....
ans = np.zeros_like(z)
ans[~f_idx] = sa
ans[f_idx] = ma
return ans
本文标签: pythonRecombine numpy arrays via original boolean indexStack Overflow
版权声明:本文标题:python - Recombine numpy arrays via original boolean index - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743757510a2533774.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论