搜索结果
找到约 2 项符合
zerocross 的查询结果
按分类筛选
系统设计方案 This folder contains two simple functions (zerocross and energy) to compute STE and STZCR. The
This folder contains two simple functions (zerocross and energy) to compute STE and STZCR.
The script zcr_ste_so.m uses these two and other functions (included) to compute the STE and STZCR
of the word so .
See the respective function help for more details.
源码 短时过零率和短时能量
% Computation of ST-ZCR and STE of a speech signal.
%
% Functions required: zerocross, sgn, winconv.
%
% Author: Nabin Sharma
% Date: 2009/03/15
[x,Fs] = wavread('so.wav'); % word is: so
x = x.';
N = length(x); % signal length
n = 0:N-1;
ts = n*(1/Fs); % time for signal
% define the window
wintyp ...