Signal filtering

3 views (last 30 days)
Anna
Anna on 20 Oct 2011
Hi :) I'd like to know how to divide a signal into frames (for example 25 ms frames) without overlapping. And how do I multiply each frame using the Hamming window?
Thanks!

Accepted Answer

Wayne King
Wayne King on 2 Dec 2011
Hi Anna, If you're using reshape you can't change the number of elements. so
x = randn(10,1);
x1 = reshape(x,5,2);
is ok, but
x1 = reshape(x,6,2);
is not.
Yes, you can use buffer to overlap your signal segments.
Note that buffer() will prepend and append zeros as necessary:
x = 1:10;
x1 = buffer(x,5,2);
  1 Comment
Anna
Anna on 2 Dec 2011
It wooooooooooooooorks. Thank youuuuu. You're so awesome! :D

Sign in to comment.

More Answers (1)

Wayne King
Wayne King on 20 Oct 2011
You have to know your sampling rate in order to know how many samples a 25-ms frame is. Here I'll assume it's 10 kHz. So 250 samples is 25 msec and there are 40 such segments in 1 second.
x = randn(1e4,1);
x = reshape(x,250,40);
ham = repmat(hamming(250),1,40);
x = x.*ham;
Each column of x is a 25 msec segment multiplied by a Hamming window.
  2 Comments
Jan
Jan on 20 Oct 2011
I expect that "x = bsxfun(@times, x, hamming(250));" is faster than creating ham explicitely.
Anna
Anna on 2 Dec 2011
How come when I try to add in an audio signal (using wavread) and I try to reshape it, (I used 16kHz for Fs), an 'Error' shows up. It says that it should have the same number of elements.
And is it also possible to use buffer in the circumstance that I need to overlap?
Thank You!

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!