Skip to content

Add circular convolution #8158

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

Merged
merged 6 commits into from
Mar 7, 2023
Merged
Changes from 1 commit
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
95 changes: 95 additions & 0 deletions electronics/circular_convolution.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
# 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 numpy as np
from collections import deque
import doctest


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

def __init__(self):
"""
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 = [1, 0.5]
>>> convolution.second_signal = [0.5, 1]
>>> convolution.circular_convolution()
[1.0, 1.25]

>>> 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!

"""

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.second_signal = self.second_signal + np.zeros(max_length)
elif length_first_signal > length_second_signal:
self.first_signal = self.first_signal + np.zeros(max_length)

"""
Fills the matrix in the following way assuming 'x' is the signal
[
[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]

matrix = list(np.transpose(matrix))

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

return final_signal


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