Filter löschen
Filter löschen

Constructively adding sound waves

1 Ansicht (letzte 30 Tage)
Edward  Jones
Edward Jones am 12 Okt. 2017
Beantwortet: The Matlabinator am 12 Okt. 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.

Antworten (1)

The Matlabinator
The Matlabinator am 12 Okt. 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.

Kategorien

Mehr zu Measurements and Spatial Audio finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by