Calculate the sin angle of an array using NumPy

In this python numpy program, we will calculate the sin angle of an array using NumPy.

Steps to solve the program
  1. Import the numpy library as np.
  2. Create an array using np.array().
  3. Calculate the sin angle of the array using np.sin().
  4. 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]
				
			

check whether the dimensions of two arrays are the same or not.

calculate the standard deviation of an array.

Leave a Comment