gpt4 book ai didi

python - 用于查找三角形边的用户定义函数中的公式错误

转载 作者:行者123 更新时间:2023-11-30 22:27:12 26 4
gpt4 key购买 nike

它显示 UD 函数的 alpha 部分存在语法错误。 enter image description here

import math

def getC(a, b, alpha):
form_ula = (math.pow(a, 2) + math.pow(b, 2) - (2 * a * b * cos alpha))
return form_ula

最佳答案

看起来您没有将 alpha 传递给 cos 函数(应该是 cos(alpha))

此外,您可以简单地返回第一行:

def getC(a, b, alpha):
return math.pow(a, 2) + math.pow(b, 2) - (2 * a * b * math.cos(alpha))

关于python - 用于查找三角形边的用户定义函数中的公式错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46984183/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com