Why is the Reverberator output a two-column matrix.

7 visualizaciones (últimos 30 días)
Michael Andersson
Michael Andersson el 22 de Jun. de 2020
Comentada: Michael Andersson el 22 de Jun. de 2020
A quick question as the title states, why does my audio signal returned as a two-column matrix from a reverberator.
reverd4 = reverberator('PreDelay', 0.2,'DecayFactor', 0.8);
y4 = reverd4(y);
What does each of the columns represent. Therefore, when I want to plot the audio signal vs time, which column of data should I use?
Also I want to add the products of multiple reverbs (reflection copies) together. Therfore, should I add both columns with the rest of the pairs of columns, or just one from each?
Thanks

Respuesta aceptada

Brian Hemmat
Brian Hemmat el 22 de Jun. de 2020
The two columns represent the left and right channels of a stereo recording. The reverberator object is intended to mimic an acoustic environment where the time-delay between your ears carries important information.
Depending on what you want to analyze by plotting, you can either convert the audio signal to mono by taking the mean, or plot each channel separately.
To add multiple reverberations together, you can take the means of the respective channels. To be clear though, the reverberator object does not just produce a single reflection. It includes a reverberation tail, as described in the algorithm section.

Más respuestas (0)

Categorías

Más información sobre Audio I/O and Waveform Generation 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