Python 中的 asin() 方法

Vaibhav Vaibhav 2023年1月5日
Python 中的 asin() 方法

sine 函数的逆函数称为 arcsine。正弦等于斜边的对边与最长边的比值。

sine 函数的逆函数计算两侧之间的角度。假设我们有一个角度θ,那么θ正弦反正弦公式将遵循。

Sine Function -> sin(θ) = (Side opposit to θ angle) / (Hypotenuse)
Arcsine Function -> θ = sin⁻¹((Side opposit to θ angle) / (Hypotenuse))

Python 编程语言有一个内置模块 math,它是标准 Python 库的一部分。

这个模块有一个方法,asin(),用于执行反正弦操作。

本文将学习如何在 Python 中使用 asin() 方法计算反正弦或正弦的倒数。

在 Python 中使用 asin() 方法

asin() 方法接受单个浮点值,该值应在 [-1, 1] 范围内,包括两个值。

asin() 方法将以弧度为单位计算提供的浮点值的角度。

要将弧度转换为度,可以使用 1 弧度等于 57.296 度。或者,将弧度值乘以 180 / π 以将其转换为度数。

1 radian = 57.296 degrees
1 radian * 180 / π = 57.296 degrees

让我们借助一些相关示例来了解 asin() 方法的用法。请参阅以下 Python 代码。

import math

print(math.asin(0))
print(math.asin(1))  # π / 2
print(math.asin(-1))  # -π / 2
print(math.asin(10 / 20))
print(math.asin(40 / 50))
print(math.asin(-10 / 20))
print(math.asin(-40 / 50))

输出:

0.0
1.5707963267948966
-1.5707963267948966
0.5235987755982989
0.9272952180016123
-0.5235987755982989
-0.9272952180016123
作者: Vaibhav Vaibhav
Vaibhav Vaibhav avatar Vaibhav Vaibhav avatar

Vaibhav is an artificial intelligence and cloud computing stan. He likes to build end-to-end full-stack web and mobile applications. Besides computer science and technology, he loves playing cricket and badminton, going on bike rides, and doodling.

相关文章 - Python Math