Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有 python 等效于 R 的logspace_add函数?
嗯,有一个功能
math.log1p(x)
它返回 1+x(以 e 为底)的自然对数。结果的计算方式对于接近零的 x 是准确的。
否则,如果您使用的是 numpy,则可以使用
numpy.logaddexp(logA, logB)
你可以自己做...?
import math def log_add(x,y): res = math.log(math.exp(x) + math.exp(y)) return res