资源简介
具有更好的时频分辨率,是分析非平稳信号的重要工具,

代码片段和文件信息
function [tfrtf] = tfrwv(xtNtrace)
if (nargin == 0)
error(‘At least one parameter required‘);
end;
[xrowxcol] = size(x);
if (nargin == 1)
t=1:xrow; N=xrow ; trace=0;
elseif (nargin == 2)
N=xrow ; trace=0;
elseif (nargin == 3)
trace = 0;
end;
if (N<0)
error(‘N must be greater than zero‘);
end;
[trowtcol] = size(t);
if (xcol==0)||(xcol>2)
error(‘X must have one or two columns‘);
elseif (trow~=1)
error(‘T must only have one row‘);
elseif (2^nextpow2(N)~=N)
fprintf(‘For a faster computation N should be a power of two\n‘);
end;
tfr= zeros (Ntcol);
if trace disp(‘Wigner-Ville distribution‘); end;
for icol=1:tcol
ti= t(icol); taumax=min([ti-1xrow-tiround(N/2)-1]);
tau=-taumax:taumax; indices= rem(N+tauN)+1;
tfr(indicesicol) = x(ti+tau1) .* conj(x(ti-tauxcol));
tau=round(N/2);
if (ti<=xrow-tau)&&(ti>=tau+1)
tfr(tau+1icol) = 0.5 * (x(ti+tau1) * conj(x(ti-tauxcol)) + ...
x(ti-tau1) * conj(x(ti+tauxcol))) ;
end;
if trace disprog(icoltcol10); end;
end;
tfr= fft(tfr);
if (xcol==1) tfr=real(tfr); end ;
if (nargout==0)
tfrqview(tfrxt‘tfrwv‘);
elseif (nargout==3)
f=(0.5*(0:N-1)/N)‘;
end;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1241 2013-07-22 14:27 tfrwv.m
----------- --------- ---------- ----- ----
1241 1
相关资源
- DS18B20分布式多点测温的Proteus仿真
- 印度泰米尔纳德邦Noyyal流域利用GIS和
- 使用$$ \\ sqrt {s} = 13 \\ hbox {TeV} $$ s =
- 从目前的关于介子-光子跃迁形状因数
- GeV在AuAu和dAu碰撞中的横向动量分布
- RHIC和LHC能量碰撞中的横向动量分布
- 在RHIC和LHC能量下重离子碰撞中产生的
- 在sNN = 5.02 TeV时Pb-Pb碰撞中带电粒子的
- Grokking the System Design Interview
- 彩色玻璃冷凝液的衍射dijet产量和Wi
- 完全协变成分夸克模型中的Pion广义
- 减少高质量Drell-Yan谱中parton分布函数
- 介子价夸克parton分布函数
- 希格斯玻色子对光子和轻子对的角分
- S波重夸克族的超前扭曲parton分布幅度
- 核介质中介子和钾的价夸克分布
- 电磁对parton分布中电荷对称性违反的
- 从中性电流Drell-Yan测量值约束Parton分
- Spin-1目标的广义parton分布的多项式和
- 从晶格QCD计算中提取parton分布函数
- 手性相变附近的净重子数概率分布
- 大动量有效理论中矢量介子的光锥分
- 介子夸克拟分布函数中的有限动量效
- 光锥夸克模型中介子介子的Quark Wign
- curve分布式存储系统 v0.1.3
- curve分布式存储系统 v0.1.4
- VS1053B编解码器的VDR分布式声音采集卡
- 基于ARM7的分布式远程测控系统设计
- 一个考虑土壤水侧向运动的分布式墒
- 基于风流及粉尘分布规律的机掘工作
评论
共有 条评论