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

Aasheesh Sahu NumPy Assignment

Subtitle Here

Write a short introduction about Numpy and list the chosen functions.
Numpy is a package in python which supports large multi dimensional arrays and matrices. We can perform mathematical functions upon them easily by using numpy.

  • function 1 = np.mean
  • function 2 = np.linalg.inv
  • function 3 = np.split
  • function 4 = np.vdot
  • function 5 = np.unique

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..

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