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

Numpy

NumPy is a library for the Python programming language, adding support for large, multi-dimensional arrays and matrices, along with a large collection of high-level mathematical functions to operate on these arrays

  • np.reshape (Change the shape of the array)
  • np.matmul ( give the dot product of 2 array)
  • np.concatenate ( concatenate the 2 array to 1 array)
  • np.insert ( insert the row or column in the array)
  • np.delete ( used to delete the row or column in the array)
!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 "BalajiB197/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/BalajiB197/numpy-array-operations

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