energy.m
来自「This folder contains two simple function」· M 代码 · 共 22 行
M
22 行
function En = energy(x,wintype,winamp,winlen)
%ENERGY Short-time energy computation.
% y = ENERGY(X,WINTYPE,WINAMP,WINLEN) computes the short-time enery of
% the sequence X.
%
% WINTYPE defines the window type. RECTWIN, HAMMING, HANNING, and
% BLACKAMN are the possible choices. WINAMP sets the amplitude of the
% window and the length of the window is WINLEN.
%
% See also RECTWIN, HAMMING, HANNING, BARTLETT, BLACKMAN.
%
% Author: Nabin Sharma
% Date: 2009/03/15
error(nargchk(1,4,nargin,'struct'));
% generate the window
win = (winamp*(window(str2func(wintype),winlen))).';
% enery calculation
x2 = x.^2;
En = winconv(x2,wintype,win,winlen);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?