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

Assignment 2

Numpy Functions

Write a short introduction about Numpy and list the chosen functions.

  • array - creates np array
  • dot - returns the dot product of 2 arrays
  • reshape - changes the shape of array without changing the contents
  • maximum - returns the array of element wise max element
  • arange - returns a array of given range, step, and order

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')
[jovian] Updating notebook "amogh-r-rao/numpy-array-operations" on https://jovian.ai [jovian] Committed successfully! https://jovian.ai/amogh-r-rao/numpy-array-operations

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