Last active
April 7, 2023 18:32
-
-
Save TrebledJ/14b8842ef3696b09e299c34ba0da9e6c to your computer and use it in GitHub Desktop.
Demonstration of additive synthesis using numpy and matplotlib. See it in action: https://trebledj.github.io/posts/digital-audio-synthesis-for-dummies-part-2/#additive-synthesis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Additive Synthesis Demo | |
# by @TrebledJ | |
import matplotlib.pyplot as plt | |
import numpy as np | |
t = np.linspace(0, 1, 44100) | |
t = t[:800] | |
freq = lambda f: np.sin(2 * np.pi * f * t) | |
f1, f2 = 440, 660 | |
s1, s2 = freq(f1), freq(f2) | |
data = [ | |
(f'{f1}Hz', s1), | |
(f'{f2}Hz', s2), | |
(f'Combined', s1 + s2), | |
(f'Halved', (s1 + s2) / 2), | |
] | |
fig, axs = plt.subplots(len(data), 1) | |
for i, (label, y) in enumerate(data): | |
axs[i].plot(t, y) | |
axs[i].set_ylabel(label) | |
fig.tight_layout() | |
fig.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment