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);
Reviewed by Author
on
20:27
Rating: 5
MATLAB for Beginners and Developers: A Project-Based Guide to Practical Applications MATLAB for Beginners and Developers is a practical, pr...
MATLAB Programs/Code (matlabcoding.com)
No comments