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

ASSIGNMENT 2: NUMPY Functions

Numpy and 5 five functions with examples

Numpy is a library which is used in python programming language. Library contains multiple funcationalities to perform mathematical functions in arrays and matrices.

  • moveaxis : move the axis of the array to a new position
  • C_ : concatenate along the second axis
  • take : take the required value from the array by passing index and axis
  • cumsum : cumulatively sum the given array
  • copyto : copy the vaules in one array to another array
!pip install jovian --upgrade --quiet
import jovian
jovian.commit(project='numpy-array-operations-5-A2')
[jovian] Attempting to save notebook..

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