Learn practical skills, build real-world projects, and advance your career
  1. Pick 5 interesting Numpy array functions by going through the documentation: https://numpy.org/doc/stable/reference/routines.html

5 most amazing numpy functions

Numpy is an acronym for NumericalPython. It is a python lirary that helps the programmers by providing many useful functions. The library being built upon c++ also provides very good speed and efficiency.

  • numpy.diag
  • numpy.vdot
  • numpy.inner
  • numpy.exp
  • numpy.add
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Updating notebook "adhil-muhammed/numpy-array-operations" on https://jovian.ai [jovian] Uploading notebook.. [jovian] Uploading additional files... [jovian] Committed successfully! https://jovian.ai/adhil-muhammed/numpy-array-operations

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