In this python numpy program, we will calculate the sin 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 sin angle of the array using np.sin().
- Print the output.
import numpy as np
angle = np.array([45,13])
print(f"Sin of {angle}: ",np.sin(angle))
Output :
Sin of [45 13]: [0.85090352 0.42016704]