gpt4 book ai didi

python - python中Tan的逆(tan-1)

转载 作者:IT老高 更新时间:2023-10-28 22:19:36 28 4
gpt4 key购买 nike

我试图在 python 中计算 tan 的倒数,但它没有给我正确的值,例如,如果我要做 1.18 的倒数,math.atan(1.18)

>>>math.atan(1.18)
0.8677

但是,正确答案是 49.720136931。正确的做法是什么?

最佳答案

math.atan(x)以弧度返回,如果需要度数,请使用 math.degrees(x) 进行转换

Converts angle x from radians to degrees.

>>> import math
>>> math.degrees(math.atan(1.18))
49.720136931043555

关于python - python中Tan的逆(tan-1),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10057854/

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