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

5 Numpy function you should know

Write a short introduction about Numpy and list the chosen functions.

-function1 = np.linalg.solve (to solve linear equation)  
-function2 = np.linalg.det (to calculate determinant of a matrix)
-function3 = np.split (To spit a matrix in sub parts)
-function4 = np.diag (Get diagonal of the matrix)
-function5 = np.compress (To compress a given matrix into required element)

The recommended way to run this notebook is to click the "Run" button at the top of this page, and select "Run on Binder". This will run the notebook on mybinder.org, a free online service for running Jupyter notebooks.

!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Please enter your API key ( from https://jovian.ml/ ): API KEY:

Let's begin by importing Numpy and listing out the functions covered in this notebook.