read two different tracks in matlab
古いコメントを表示
Hi
i have recorded my voice from two mics at the same time in two different tracks in the same file. Now inorder to correlate them, i have to read them separately from the tracks. could someone please tell me how to do that in matlab?
thanks in advance
採用された回答
その他の回答 (1 件)
Honglei Chen
2011 年 11 月 10 日
I assume this is similar to a stereo signal. If that's the case, then you can still use wavread to read in the file.
[y,fs] = wavread(FILENAME)
The variable y in this case should have two columns and each one corresponds to a track.
HTH
1 件のコメント
Walter Roberson
2011 年 11 月 10 日
But that will retrieve all of the tracks simultaneously, which (for whatever reason) Padma does not wish to do.
There is, as far as I know, no provided mechanism to return one track at a time.
カテゴリ
ヘルプ センター および File 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!