资源简介
语音端点检测matlab程序 含enframe函数
代码片段和文件信息
function f=enframe(xwininc)
%ENframe split signal up into (overlapping) frames: one per row. F=(XWININC)
%
% F = ENframe(XLEN) splits the vector X up into
% frames. Each frame is of length LEN and occupies
% one row of the output matrix. The last few frames of X
% will be ignored if its length is not divisible by LEN.
% It is an error if X is shorter than LEN.
%
% F = ENframe(XLENINC) has frames beginning at increments of INC
% The centre of frame I is X((I-1)*INC+(LEN+1)/2) for I=12...
% The number of frames is fix((length(X)-LEN+INC)/INC)
%
% F = ENframe(XWINDOW) or ENframe(XWINDOWINC) multiplies
% each frame by WINDOW(:)
% Copyright (C) Mike Brookes 1997
% Version: $Id: enframe.mv 1.3 2005/02/21 15:22:12 dmb Exp $
%
% VOICEBOX is a MATLAB toolbox for speech processing.
% Home page: http://www.ee.ic.ac.uk/hp/staff/dmb/voicebox/voicebox.html
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This program is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 2 of the License or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You can obtain a copy of the GNU General Public License from
% ftp://prep.ai.mit.edu/pub/gnu/COPYING-2.0 or by writing to
% Free Software Foundation Inc.675 Mass Ave Cambridge MA 02139 USA.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
nx=length(x);
nwin=length(win);
if (nwin == 1)
len = win;
else
len = nwin;
end
if (nargin < 3)
inc = len;
end
nf = fix((nx-len+inc)/inc);
f=zeros(nflen);
indf= inc*(0:(nf-1)).‘;
inds = (1:len);
f(:) = x(indf(:ones(1len))+inds(ones(nf1):));
if (nwin > 1)
w = win(:)‘;
f = f .* w(ones(nf1):);
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2197 2009-05-04 22:20 语音端点检测matlab程序\enfr
文件 901164 2008-04-17 00:13 语音端点检测matlab程序\luyin.wav
文件 3919 2008-04-17 00:26 语音端点检测matlab程序\nengliang.m
目录 0 2008-04-17 01:24 语音端点检测matlab程序
----------- --------- ---------- ----- ----
907280 4
- 上一篇:OOK调制的MATLAB仿真
- 下一篇:5节点MATLAB潮流计算
相关资源
- colorspace.m matlab程序
- TLS_ESPRIT的间谐波检测算法matlab程序
- 基于matlab的灰色预测模型GM1,1预测标
- 基于帧差法的运动目标检测的matlab代
- 基于MATLAB的运动物体检测与识别
- 肤色检测matlab
- FDBPM算法matlab程序
- snake边缘检测算法算法
- 14节点潮流计算matlab程序
- 泰勒图MATLAB程序
- 东南大学 matlab 图像边缘检测算法 代
- 计算rice.png米粒个数以及大小的matla
- 共振峰提取 Matlab程序
- 平板光波导芯层中所有导模的传播常
- 视频跟踪完整matlab程序
- 汉密尔顿回路 汉密尔顿圈经典算法
- 传统传染病建模的matlab程序
- 基于matlab-GUI实时人脸检测系统
- 直线阵和圆阵数字波束形成MatlAB程序
- 随机相位正弦波仿真实验MATLAB程序
- 基于matlab的工件缺陷检测
- ACSS角点检测程序
- LFM仿真的matlab程序
- 自抗扰matlab程序代码
- matlab中基于Viola-Jones算法的人脸检测
- l1-ls 范数求解matlab程序包
- 三维锥束CT反投影滤波重建matlab程序
- 谱估计 MUSIC算法 matlab程序
- 雷达检测相关MATLAB源码
- 雅克比法求对称矩阵的特征值(MATL
评论
共有 条评论