资源简介
可以运行的EMD工具箱针对hhspectrum错误-instfreq.m
在论坛上载了那个最经典的EMD,但是运行后发现出现错误。但是好像很多人也只是随便发,不管是否可以运行,可能仅仅是为了挣麦片。
与同学研究了下,发现是缺少了一个instfreq的函数,于是就从网站上载了一个函数给有需要的人参考下。
EMD中文件夹的install不用管它。可以用一个例子测试下
t=1:500;
t=t*1/2000;
x=sin;
y=0.4*sin;
z=x y;
plot
imf=emd;
emd_visu,imf)
[A,f,tt]=hhspectrum;
[im,tt]=toimage;
disp_hhs;
colormap)
如果单纯用EMD包,运行到[A,f,tt]=hhspectrum;就会出错,hhspectrum函数需要有instfreq函数包才行。
希望对大家有帮助,为了方便,也提供了一个emd instfreq函数的可以下载
在论坛上载了那个最经典的EMD,但是运行后发现出现错误。但是好像很多人也只是随便发,不管是否可以运行,可能仅仅是为了挣麦片。
与同学研究了下,发现是缺少了一个instfreq的函数,于是就从网站上载了一个函数给有需要的人参考下。
EMD中文件夹的install不用管它。可以用一个例子测试下
t=1:500;
t=t*1/2000;
x=sin;
y=0.4*sin;
z=x y;
plot
imf=emd;
emd_visu,imf)
[A,f,tt]=hhspectrum;
[im,tt]=toimage;
disp_hhs;
colormap)
如果单纯用EMD包,运行到[A,f,tt]=hhspectrum;就会出错,hhspectrum函数需要有instfreq函数包才行。
希望对大家有帮助,为了方便,也提供了一个emd instfreq函数的可以下载
代码片段和文件信息
function [fnormhatt]=instfreq(xtLtrace);
%INSTFREQ Instantaneous frequency estimation.
% [FNORMHATT]=INSTFREQ(XTLTRACE) computes the instantaneous
% frequency of the analytic signal X at time instant(s) T using the
% trapezoidal integration rule.
% The result FNORMHAT lies between 0.0 and 0.5.
%
% X : Analytic signal to be analyzed.
% T : Time instants (default : 2:length(X)-1).
% L : If L=1 computes the (normalized) instantaneous frequency
% of the signal X defined as angle(X(T+1)*conj(X(T-1)) ;
% if L>1 computes a Maximum Likelihood estimation of the
% instantaneous frequency of the deterministic part of the signal
% blurried in a white gaussian noise.
% L must be an integer (default : 1).
% TRACE : if nonzero the progression of the algorithm is shown
% (default : 0).
% FNORMHAT : Output (normalized) instantaneous frequency.
% T : Time instants.
%
% Examples :
% x=fmsin(700.050.3525); [instft]=instfreq(x); plot(tinstf)
% N=64; SNR=10.0; L=4; t=L+1:N-L; x=fmsin(N0.050.3540);
% sig=sigmerge(xhilbert(randn(N1))SNR);
% plotifl(t[instfreq(sigtL)instfreq(xt)]); grid;
% title (‘theoretical and estimated instantaneous frequencies‘);
%
% See also KAYTTH SGRPDLAY.
% F. Auger March 1994 July 1995.
% Copyright (c) 1996 by CNRS (France).
%
% ------------------- CONFIDENTIAL PROGRAM --------------------
% This program can not be used without the authorization
相关资源
- 串行级联cpm系统MATLAB仿真
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
评论
共有 条评论