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

Assignment 2 - Numpy Array Operations

Numpy Functions

NumPy (Numerical Python) is a python library used for working with arrays. It also has functions for working in domain of linear algebra, fourier transform, and matrices.

  • function 1 = np.char.add()
  • function 2 = transpose(arr,axes)
  • function 3 = np.mean()
  • function 4 = np.linalg.inv()
  • function 5 = np.vdot()
!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: ········ [jovian] Updating notebook "iamsahilsk99/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/iamsahilsk99/numpy-array-operations

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