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

Five Numpy Array Operations I Like

Numpy is a fundamental package in Python that is very useful in scientific computing. It let's us perform various opertaions and functions on array and is much much faster than doing similar things with lists in Python. In this assignment we will cover some of the basic Numpy routines.

  • numpy.fft
  • numpy.dot
  • numpy.median
  • numpy.var
  • numpy.sqrt
!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.