ridge_windowft.m

来自「用于进行小波时频分析的matlab源码,可进行测井小波时频划分!」· M 代码 · 共 40 行

M
40
字号
function ridges = Ridge_WindowFT(specgm)
% Ridge_WindowFT -- Find Ridges of Window Fourier Transform
%  Usage
%    ridges = Ridge_WindowFT(specgm);
%  Inputs
%    specgm   	output of window Fourier transform, from WindowFT
%  Outputs
%    ridges	ridges table of window Fourier transform;
%		A binary table having same size as specgm
%  Side Effects
%    
%  Description
%
%  Algorithm
%     
%  Examples
%     
%  See Also
%    WindowFT	
%  References
%    Mallat, "A Wavelet Tour of Signal Processing"
 
 ridges = Ridge_AWT(specgm,3);



%
% Copyright (c) 1996. Xiaoming Huo
% 
    
    
%   
% Part of WaveLab Version 802
% Built Sunday, October 3, 1999 8:52:27 AM
% This is Copyrighted Material
% For Copying permissions see COPYING.m
% Comments? e-mail wavelab@stat.stanford.edu
%   
    

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?