Borrar filtros
Borrar filtros

Constructively adding sound waves

2 visualizaciones (últimos 30 días)
Edward  Jones
Edward Jones el 12 de Oct. de 2017
Respondida: The Matlabinator el 12 de Oct. de 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.

Respuestas (1)

The Matlabinator
The Matlabinator el 12 de Oct. de 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.

Categorías

Más información sobre Measurements and Spatial Audio en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by