Python math.exp函数语法

时间:2017-10-16 07:30:11

标签: python python-3.x exponential

使用指数函数后出现问题。它不断在下面的行上抛出语法错误。我想知道我是否正在使用" math.exp()"正常。

作为一组示例代码

{
    "timestamp": 1508137623531,
    "status": 405,
    "error": "Method Not Allowed",
    "exception": "org.springframework.web.HttpRequestMethodNotSupportedException",
    "message": "Request method 'GET' not supported",
    "path": "/api/test"
}

代码用于数值模型,因此我需要在充满变量的公式上使用exp。

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:0)

  

D [case] =(Dref [case] *((50 / t)^ m))* math.exp((20/6)*((1/295) - (1 /温度)))

似乎是额外的括号

尝试

  

D [case] =(Dref [case] *((50 / t)^ m))* math.exp((20/6)*((1/295) - (1 / Temp)))< / p>