Learn practical skills, build real-world projects, and advance your career

~Solution to Assignment 2

Top Five Numpy Funtions :

Function 1 = Numpy.sin()
Function 2 = Numpy.mean()
Function 3 = Numpy.log()
Function 4 = Numpy.add()
Function 5 = Numpy.linalg.det()

Funtion1 :: Numpy.sin() :

This function help to find sine value of the angle in degree and radian.
#Example1 : sin() values in degree :

import numpy as np
sin_90 = np.sin(90)
print('Sine value of angle 90 in degree = ', sin_90)