Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add circular convolution #8158

Merged
merged 6 commits into from
Mar 7, 2023
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 101 additions & 0 deletions electronics/circular_convolution.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
# https://en.wikipedia.org/wiki/Circular_convolution

"""
Circular convolution, also known as cyclic convolution,
is a special case of periodic convolution, which is the convolution of two
periodic functions that have the same period. Periodic convolution arises,
for example, in the context of the discrete-time Fourier transform (DTFT).
In particular, the DTFT of the product of two discrete sequences is the periodic
convolution of the DTFTs of the individual sequences. And each DTFT is a periodic
summation of a continuous Fourier transform function.

Source: https://en.wikipedia.org/wiki/Circular_convolution
"""

import doctest
from collections import deque

import numpy as np


class CircularConvolution:
"""
This class stores the first and second signal and performs the circular convolution
"""

def __init__(self) -> None:
"""
ChrisO345 marked this conversation as resolved.
Show resolved Hide resolved
First signal and second signal are stored as 1-D array
"""

self.first_signal = [2, 1, 2, -1]
self.second_signal = [1, 2, 3, 4]

def circular_convolution(self) -> list[float]:
"""
This function performs the circular convolution of the first and second signal
using matrix method

Usage:
>>> import circular_convolution as cc
>>> convolution = cc.CircularConvolution()
>>> convolution.circular_convolution()
[10, 10, 6, 14]

>>> convolution.first_signal = [0.2, 0.4, 0.6, 0.8, 1.0, 1.2, 1.4, 1.6]
>>> convolution.second_signal = [0.1, 0.3, 0.5, 0.7, 0.9, 1.1, 1.3, 1.5]
>>> convolution.circular_convolution()
[5.2, 6.0, 6.48, 6.64, 6.48, 6.0, 5.2, 4.08]

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add another unit test case where first_signal & second_signal have unequal sizes.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for reviewing!
I will add the test case for unequal signals soon!

>>> convolution.first_signal = [-1, 1, 2, -2]
>>> convolution.second_signal = [0.5, 1, -1, 2, 0.75]
>>> convolution.circular_convolution()
[6.25, -3.0, 1.5, -2.0, -2.75]

>>> convolution.first_signal = [1, -1, 2, 3, -1]
>>> convolution.second_signal = [1, 2, 3]
>>> convolution.circular_convolution()
[8, -2, 3, 4, 11]

"""

length_first_signal = len(self.first_signal)
length_second_signal = len(self.second_signal)

max_length = max(length_first_signal, length_second_signal)

# create a zero matrix of max_length x max_length
matrix = [[0] * max_length for i in range(max_length)]

# fills the smaller signal with zeros to make both signals of same length
if length_first_signal < length_second_signal:
self.first_signal += [0 for i in range(max_length - length_first_signal)]
elif length_first_signal > length_second_signal:
self.second_signal += [0 for i in range(max_length - length_second_signal)]
subhendudash02 marked this conversation as resolved.
Show resolved Hide resolved

"""
Fills the matrix in the following way assuming 'x' is the signal of length 4
[
[x[0], x[3], x[2], x[1]],
[x[1], x[0], x[3], x[2]],
[x[2], x[1], x[0], x[3]],
[x[3], x[2], x[1], x[0]]
]
"""
for i in range(max_length):
rotated_signal = deque(self.second_signal)
rotated_signal.rotate(i)
for j in range(max_length):
matrix[i][j] += rotated_signal[j]
subhendudash02 marked this conversation as resolved.
Show resolved Hide resolved

# multiply the matrix with the first signal
final_signal = np.matmul(np.transpose(matrix), np.transpose(self.first_signal))

# rounding-off to two decimal places
final_signal = [round(i, 2) for i in final_signal]

return final_signal
subhendudash02 marked this conversation as resolved.
Show resolved Hide resolved


if __name__ == "__main__":
doctest.testmod()