Clear Filters
Clear Filters

How can I modify vector length?

5 views (last 30 days)
DenisK
DenisK on 12 May 2018
Commented: DenisK on 12 May 2018
I have several vectors to compare, however they all slightly differentiate by length. I know that first numbers of vectors are zeros. Can I cut those number to get vectors of same length? I don't want to pad vectors with zeros, because in this case I wouldn't be able to calculate an error between vectors?
Or may be there is a way to calculate error ratio between two vectors, even if they have different length?
  4 Comments
Jan
Jan on 12 May 2018
Please post the data. If the inputs contain NaNs, the result must be NaN also.
DenisK
DenisK on 12 May 2018
The data is an mp3 file, so I cannot attache it here. Vectors that I built are result of few convolution methods, that I need to compare (linear, circular, overlap save and overlap add). I took linear convolution result as a reference vector.

Sign in to comment.

Accepted Answer

Jan
Jan on 12 May 2018
If cropping the zeros solves the problem, crop the zeros:
v = [0,0,1,2,3,4]
v = v(find(v, 1):length(v))

More Answers (0)

Community Treasure Hunt

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

Start Hunting!