how can i play sound to the right stereo channel only?

9 visualizzazioni (ultimi 30 giorni)
The sound command sends sound to both earphones. how do I send a sound to just one?

Risposta accettata

Star Strider
Star Strider il 14 Feb 2016
The sound files are (usually) a (2xN) or (Nx2) matrix, one row or column for each channel. To have it play in only the right channel, set the other to a vector of zeros:
Fs = 44100;
t = linspace(0, Fs*2, Fs*2);
s = sin(2*pi*t*1000);
Out = [zeros(size(t)); s]';
sound(Out, Fs)
There is a problem with the sound on my laptop, so it’s not rendering this correctly. It should work on your computer.
  3 Commenti
Alireza Naghsh
Alireza Naghsh il 7 Mag 2021
With sound it is ok but if we audiowrite it is not work
An
An il 6 Feb 2024
Alireza Naghsh is right: Play works stereo, but when writing to file it doesn't seem to work.

Accedi per commentare.

Più risposte (1)

Noam
Noam il 16 Feb 2016
Thanks a lot Noam
  1 Commento
Jan
Jan il 16 Feb 2016
Please accept the answer if it solves your problem. Use the section for answers for answers only. Thanks.

Accedi per commentare.

Categorie

Scopri di più su Audio I/O and Waveform Generation in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by