Constructively adding sound waves

3 views (last 30 days)
Edward  Jones
Edward Jones on 12 Oct 2017
Answered: The Matlabinator on 12 Oct 2017
I want to generate a code to zero a sound wave at a particular point, then add together a series of sound waves. The problem I have is extracting the same point to zero for multiple sound waves, as some waves have data where others do not? Any help would be much appreciated.

Answers (1)

The Matlabinator
The Matlabinator on 12 Oct 2017
Hi Edward,
You may want to look into the Matlab cross-correlation function xcorr. You can call it with two output arguments to get a lag that will give you the time delay required to align the signals. Then, you can subtract the lagged signals such that they equal roughly zero. For example:
a = Signal1;
b = Signal2;
[r,lags] = xcorr(a,b);
% where r is the cross correlation coefficient and lags is the shift required to align the signals
You can then use the "lags" variable to delay one of your signals such that they are aligned. You may need to zero-pad your signals so you can shift them appropriately.

Categories

Find more on Measurements and Spatial Audio in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!