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

Assignment 2 - Numpy Array Operations

5 useful math functions in NumPy

Documentation for easy math functions

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.

  • matmul()
  • floor_divide()
  • rint()
  • lcm()
  • gcd()
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Updating notebook "akshay02/numpy-array-operations" on https://jovian.ai [jovian] Uploading notebook.. [jovian] Uploading additional files... [jovian] Committed successfully! https://jovian.ai/akshay02/numpy-array-operations

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