Skip to content

Instantly share code, notes, and snippets.

@miselaytes-anton
Last active June 4, 2018 19:07
Show Gist options
  • Save miselaytes-anton/daaf5cb43cec6896a677a13d0b9a5c24 to your computer and use it in GitHub Desktop.
Save miselaytes-anton/daaf5cb43cec6896a677a13d0b9a5c24 to your computer and use it in GitHub Desktop.
//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