because when I cut a stereo audio, this happens to be mono?

3 views (last 30 days)
[x,Fs]=audioread('pianostereo.wav'); %% Stereo audio
x2=x(1:1000)'; %% mono audio

Accepted Answer

Walter Roberson
Walter Roberson on 18 May 2019
x2 = x(1:1000,:); %stereo

More Answers (0)

Categories

Find more on Audio I/O and Waveform Generation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!