ridge_windowft.sci
来自「小波分解源代码」· SCI 代码 · 共 27 行
SCI
27 行
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"
// Copyright Aldo I Maalouf
ridges = Ridge_AWT(specgm,3);
endfunction
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?