📄 momftfr.m
字号:
function [tm,D2]=momftfr(tfr,tmin,tmax,time);%MOMFTFR Frequency moments of a time-frequency representation.% [TM,D2]=MOMFTFR(TFR,TMIN,TMAX,TIME) computes the frequeny % moments of a time-frequency representation.% % TFR : time-frequency representation ([Nrow,Ncol]size(TFR)). % TMIN : smallest column element of TFR taken into account% (default : 1) % TMAX : highest column element of TFR taken into account% (default : Ncol)% TIME : true time instants (default : 1:Ncol)% TM : averaged time (first order moment)% D2 : squared time duration (second order moment)%% Example :% sig=fmlin(128,0.1,0.4); % [tfr,t,f]=tfrwv(sig); [tm,D2]=momftfr(tfr); % subplot(211); plot(f,tm); subplot(212); plot(f,D2);%% See also MOMTTFR, MARGTFR.% F. Auger, August 1995.% Copyright (c) 1996 by CNRS (France).%% 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 should have received a copy of the GNU General Public License% along with this program; if not, write to the Free Software% Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA[tfrrow,tfrcol]=size(tfr);if (nargin==1), tmin=1; tmax=tfrcol; time=tmin:tmax;elseif (nargin==2), tmax=tfrcol; time=tmin:tmax;elseif (nargin==3), time=tmin:tmax;end;if (tmin>tmax)|(tmin<=0)|(tmax>tfrcol), error('1<=TMIN<=TMAX<=Ncol');end;E = sum(tfr(:,tmin:tmax).');tm = (time * tfr(:,tmin:tmax).' ./E).'; D2 = (time.^2 * tfr(:,tmin:tmax).' ./E).' - tm.^2;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -