Playing 2 sounds simultaneously
30 ビュー (過去 30 日間)
古いコメントを表示
I am trying to play 2 waveforms simultaneously and was wondering if anybody can help me with this. The current script I have is:
x = [0:.1:1000*pi];
x_trans = transpose(x);
y = sin(x_trans);
y2 = cos(x_trans);
comp = [y, y2];
soundsc(comp);
If the is a better way to do this I am open to ideas
0 件のコメント
回答 (1 件)
Walter Roberson
2013 年 4 月 18 日
That looks appropriate. You can write it more compactly but internally it would come out as the same thing:
x = [0:.1:1000*pi];
soundsc( [sin(x(:)), cos(x(:))] );
0 件のコメント
参考
カテゴリ
Help Center および 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!