Skip to content

Commit 46bf5a3

Browse files
pillarxyzleios
andauthoredOct 10, 2021
added convolutional theorem implementation in python (#869)
* added convolutional theorem implementation in python * fixed chapter linking * added comments to the code * changed random distribution to sawtooth * corrected previous commit * fixed comments Co-authored-by: James Schloss <[email protected]>
1 parent 7c19ec6 commit 46bf5a3

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from scipy.fft import fft, ifft
2+
import numpy as np
3+
4+
# using the convolutional theorem
5+
def convolve_fft(signal1, signal2):
6+
return ifft(np.multiply(fft(signal1),fft(signal2)))
7+
8+
# Sawtooth functions
9+
x = [float(i)/200 for i in range(1,101)]
10+
y = [float(i)/200 for i in range(1,101)]
11+
12+
x /= np.linalg.norm(x)
13+
y /= np.linalg.norm(y)
14+
15+
# Convolving the two signals
16+
fft_output = convolve_fft(x, y)
17+
18+
np.savetxt("fft.dat", np.real(fft_output))
19+

‎contents/convolutions/convolutional_theorem/convolutional_theorem.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ For this example code, we will be using two sawtooth functions as we did in the
4444
{% method %}
4545
{% sample lang="jl" %}
4646
[import, lang:"julia"](code/julia/convolutional_theorem.jl)
47+
{% sample lang="py" %}
48+
[import, lang:"python"](code/python/convolutional_theorem.py)
4749
{% endmethod %}
4850

4951
This should produce the following output:
@@ -52,7 +54,6 @@ This should produce the following output:
5254
<img class="center" src="../res/cyclic.png" style="width:75%">
5355
</p>
5456

55-
5657
<script>
5758
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
5859
</script>

0 commit comments

Comments
 (0)
Please sign in to comment.