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

Assignment 2 - Numpy Array Operations

Discrete Time Signal Processing using numpy

We will take a look at numpy array operations that can be useful in didgital signal processing by representing images as arrays and matrices.

Here's a short introduction about Numpy and list the chosen functions.

  • concatenate
  • matmul
  • dot
  • array
  • real_if_close

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] Detected Colab notebook... [jovian] Please enter your API key ( from https://jovian.ml/ ): API KEY: ·········· [jovian] Uploading colab notebook to Jovian... [jovian] Committed successfully! https://jovian.ml/vedant-madane/numpy-array-operations

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