This lab will teach you some fundamentals of Digital Signal Processing (DSP), and introduce you to Python and Jupyter Notebooks, mathematical tools that integrate numerical analysis, matrix computation and graphics in an easy-to-use environment. Jupyter Notebooks are highly interactive; their interpretative nature allows you to explore mathematical concepts in signal processing without tedious programming. Once grasped, the same tool can be used for other subjects such as circuit analysis, communications, and control engineering.
At the end of this lab you will be able to:
- Generate and analyse discrete-time signals using Python
- Analyse signals by applying Fourier transforms and window functions
- Analyse digital filters and their responses
- Demonstrate conceptual understanding of discrete signal processing
- Evaluate your work and your results
- Derive equations for the 3 types of Discrete Fourier Transforms.
- Generate sinusoidal signals in Python as vectors and investigate the effects of DFT and Windowing. You will then use these techniques to investigate an unknown signal (provided).
- Filter noise from the unknown signal by removing unwanted frequencies in the frequency domain.
- Investigate the effects of passing Pulse and Impulse signals through a digital filter.
- Investigate simple digital filter and their responses (FIR and IIR).
To complete this lab you will need to install and run jupyter notebooks on you personal laptop.
This experiment is designed to support the second year Signals and Systems course. While the notes provided in this experiment attempt to explain certain basic concepts, they are far from complete. You will likely find the recommended textbook helpful when studying this experiment as well as the lecture course: S. Haykin and B. Van Veen, 'Signals and Systems,' 2nd Ed., Wiley, 2003.
Week starting | Lecture topic | Lab exercise |
---|---|---|
7/10 | 1: Introduction | / |
14/10 | 2: LTI Systems | EX1 - Introduction |
21/10 | 3: Sampling | EX2 - LTI systems |
28/10 | 4: Fourier Transform | EX3 - Sampling |
4/11 | Midterm | Midterm |
11/11 | 5: Laplace | EX4 - Fourier |
18/11 | 5: Laplace | EX4 - Fourier |
25/11 | 6: z-Transform | EX5 - Filters |
02/12 | 7: Filters | EX6 - FIR/IIR Filters |
There are 6 exercises in this coursework, each relating to a topic covered in lectures. Each exercise should last approximately 2 hours. We strongly recommend that you attend scheduled lab sessions to work on this coursework.
This coursework will be assessed as part of the exam. Normally, some of the parts of Question 1 of the exam will ask questions on the material covered in the coursework. The nominal weighting of the coursework-related questions in the exam amounts to 10% of the course total. Given that the material covered in the coursework is also covered in lectures and tutorial questions, coursework-related questions will not be labelled as such on the exam paper, and may be embedded in other questions. The coursework-related questions in the exam will specifically assess understanding of the theoretical concepts and the methods for signal analysis and processing covered in the coursework. The optional exercises in the coursework will not be assessed in the exam in a coursework-specific manner.
This laboratory coursework was developed and designed by Aidan O. T. Hogg and Patrick A. Naylor (with help from Vincent W. Neo and Emilie d'Olne). Please post on the course Forum (or email [email protected]) if you have any suggestions or comments about this document as this will help future year groups.
Video of setup:
- Download this Git repository
- Install Python 3.12 (or any version from 3.6 to 3.12) from https://www.python.org/downloads/macos/
- Install the required Python packages
python -m pip install numpy matplotlib scipy soundfile jupyter
Note: you may need to replace python
with python3
- Go to the
sap-EE2-SS-LAB
folder and run the Jupyter Notebook
python -m jupyter notebook
Note: you may need to use python -m notebook
instead
Video of setup:
- Download this Git repository
- Install Python 3.12 (or any version from 3.6 to 3.12) from https://www.python.org/downloads/
- Install the required Python packages
python -m pip install numpy matplotlib scipy soundfile jupyter
- Go to the
sap-EE2-SS-LAB
folder and run the Jupyter Notebook
jupyter notebook
Note: you may need to use python -m notebook
instead