In this python numpy program, we will calculate the cos angle of an array using NumPy.
Steps to solve the program
- Import the numpy library as np.
- Create an array using np.array().
- Calculate the cos angle of the array using np.cos().
- Print the output.
import numpy as np
angle = np.array([45,13])
print(f"Cos of {angle}: ",np.cos(angle))
Output :
Cos of [45 13]: [0.52532199 0.90744678]