Last active
June 4, 2018 19:07
-
-
Save miselaytes-anton/daaf5cb43cec6896a677a13d0b9a5c24 to your computer and use it in GitHub Desktop.
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
//in this example we assume guitar sound and impulse response are loaded into arrays somehow | |
const samplingRate = 44100 | |
// 1 second of an input sound (e.g. guitar chord) | |
const X = new Array(samplingRate * 1) | |
// 2 seconds of an impulse response (e.g echos of a clap in a room) | |
const H = new Array(samplingRate * 2) | |
//output sound (how chord would sound in this room) | |
const Y = new Array(X.length + H.length) | |
X.forEach((x, i) => { | |
H.forEach((h, j) => { | |
Y[i+j] = Y[i+j] + x*h | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment