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

Assignment 2 - Numpy Array Operations

5 Functions on array manipulations using Numpy

Numpy(Numerical Python) is written in C and Python. It was created in 2005 by Travis Oliphant by incorporating the feature of Numeric.
Numpy is python library which is generally used for working with arrays but it also has working functions in fields like Linear Algebra, Statistics, Trigonometry, Fourier Transform, Matrices, etc.

Functions that I will be working on are:

  • transpose
  • stack
  • vstack
  • hstack
  • sort

The recommended way to run this notebook is to click the "Run" button at the top of this page, and select "Run on Binder". This will run the notebook on mybinder.org, a free online service for running Jupyter notebooks.

!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')

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