在Python中获取角度的三角余弦


要查找三角余弦,请在Python NumPy中使用numpy.cos()方法。该方法返回第一个参数x的每个元素的余弦值。第一个参数x是以弧度表示的角度(2pi表示360度)。第二个和第三个参数是可选的。第二个参数是一个ndarray,结果存储在其中的位置。

如果提供,它必须具有输入广播到的形状。如果未提供或为None,则返回一个新分配的数组。元组(仅可能作为关键字参数)的长度必须等于输出的数量。

第三个参数是广播到输入上的条件。在条件为True的位置,out数组将设置为ufunc结果。在其他地方,out数组将保留其原始值。

步骤

首先,导入所需的库:

import numpy as np

获取三角余弦。求90度的余弦:

print("\nResult...",np.cos(np.pi/2.))

求60度的余弦:

print("\nResult...",np.cos(np.pi/3.))

求45度的余弦:

print("\nResult...",np.cos(np.pi/4.))

求30度的余弦:

print("\nResult...",np.cos(np.pi/6.))

求0度的余弦:

print("\nResult...",np.cos(0))

示例

import numpy as np

# To find the Trigonometric cosine, use the numpy.cos() method in Python Numpy
# The method returns the sine of each element of the 1st parameter x. This is a scalar if is a scalar.

print("Get the Trigonometric cosine...")

# finding cosine 90 degrees
print("\nResult...",np.cos(np.pi/2.))

# finding cosine 60 degrees
print("\nResult...",np.cos(np.pi/3.))

# finding cosine 45 degrees
print("\nResult...",np.cos(np.pi/4.))

# finding cosine 30 degrees
print("\nResult...",np.cos(np.pi/6.))

# finding cosine 0 degrees
print("\nResult...",np.cos(0))

输出

Get the Trigonometric cosine...

Result... 6.123233995736766e-17

Result... 0.5000000000000001

Result... 0.7071067811865476

Result... 0.8660254037844387

Result... 1.0

更新于:2022年2月25日

2K+ 次浏览

启动你的职业生涯

完成课程获得认证

开始学习
广告