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

5 Useful Numpy algebraic operators

This assignment covers frequently used and most common algebraic operators that are used. The functions covered in this assignment are

  • np.vdot()
  • np.linalg.inv()
  • np.linalg.eig()
  • np.linalg.matrix_power()
  • np.matmul()
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Updating notebook "ae19m015/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/ae19m015/numpy-array-operations

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