Vectors must be the same length with .wav file

2 views (last 30 days)
Voltarian
Voltarian on 31 Mar 2020
Edited: Voltarian on 1 Apr 2020

Answers (1)

MaryD
MaryD on 31 Mar 2020
t = linspace(0, length(y)/fs,length(y));
I think you use linspace in wrong way. "y = linspace(x1,x2,n) generates n points. The spacing between the points is (x2-x1)/(n-1)."
try
t=0:length(y)/fs:length(y)

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!