Why is the Reverberator output a two-column matrix.

6 ビュー (過去 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.
  1 件のコメント
Michael Andersson
Michael Andersson 2020 年 6 月 22 日
Thank you, that was clear enough to understnad.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio 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