Why is the Reverberator output a two-column matrix.

조회 수: 7 (최근 30일)
Michael Andersson
Michael Andersson 2020년 6월 22일
댓글: Michael Andersson 2020년 6월 22일
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

채택된 답변

Brian Hemmat
Brian Hemmat 2020년 6월 22일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Audio I/O and Waveform Generation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by