Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 602 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 602 Bytes

Overlap-save linear convolution

Implementation of the overlap-save algorithm for one-dimentional long-sequence linear convolution.

This repository is part of my work as monitor in the Digital Signal Processing course (ELC1060), Federal University of Santa Maria.

Files

  • overlap_save.py: overlap-save method defined in a class data structure
  • apply_filter.py: use the above class to apply a FIR filter to a sample signal

Future