How to segment a voice signal into frames of 256 samples?

1 次查看(过去 30 天)
How to segment a voice signal into frames of 256 samples?

采纳的回答

Honglei Chen
Honglei Chen 2013-2-25
Do you mean something like this?
x = rand(1024,1);
y = buffer(x,256);
  5 个评论
Walter Roberson
Walter Roberson 2019-9-9
Saad Rehman comments to Honglei Chen:
for matlab 2016a version FRAMING is done via BUFFER function. Thumbs up!
Walter Roberson
Walter Roberson 2019-9-9
To recover the original signal after using buffer, use the (:) operator
buffered_signal = buffer(inputsignal, length_of_buffer);
reconstructed_signal = buffered_signal(:);
This assumes that no padding was needed and that there was no overlap used. If padding was needed then to reconstruct the original you would need to know the length of the original.

请先登录,再进行评论。

更多回答(2 个)

guada
guada 2014-3-16
i think i also have a similar problem, could you also please help me with this: given a with 7.238 second duration and fs=16000, i need 25 msec per frame and overlaps 10 msec every succesive frame.

sufyan masood
sufyan masood 2018-7-23
how to decompose audio signal in transfered domain ?

类别

Help CenterFile Exchange 中查找有关 Signal Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by