猿问

运行时警告:日志中遇到无效值

我变成了这个表情: RuntimeWarning: invalid value encountered in log


在尝试这个时:


def fct(a, b, c, d):

    global u1

    global u2

    if np.all(c > 0) and np.all(a > 0) and np.all(u1 != 0) and np.all(u2 != 0):

        return a, c, u1, u2


    u1, u2 = np.log(0.6*c), (math.e**d)**0.5

    F = np.log(a**2) + 6*[math.e**(-b)]/u1 + 3/u2

    print( F )

任何的想法??


慕侠2389804
浏览 422回答 1
1回答
随时随地看视频慕课网APP

相关分类

Python
我要回答