python Python:math,atan2,degrees:以度为单位计算反正切角度(theta)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python:math,atan2,degrees:以度为单位计算反正切角度(theta)相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python3


def calc_angle(AB, BC):
    from math import atan2, degrees

    print(str(round(degrees(atan2(AB, BC)))) + '°')

calc_angle(int(input()), int(input()))
calc_angle(20, 20) # 45°

以上是关于python Python:math,atan2,degrees:以度为单位计算反正切角度(theta)的主要内容,如果未能解决你的问题,请参考以下文章

ros Python 四元数转欧拉角

python math

Python-百度经纬度转高德经纬度

如何用python表示三角函数

html JS.Objects.Using Math.atan2使对象跟随鼠标指针

js math atan2