Impact-Site-Verification: dbe48ff9-4514-40fe-8cc0-70131430799e

Search This Blog

Play different sound simultaneously in two ears | MATLAB

%Code:
t=0:1/22050:4;
x=sin(2*pi*200*t);
sound(x,22050);
y=sin(2*pi*300*t);
sound(y,22050);
sound([y;x],22050);





No comments

Popular Posts