📄 energy.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -