dyad.sci
来自「小波分解源代码」· SCI 代码 · 共 14 行
SCI
14 行
function i=dyad(j)
// dyad -- Index entire j-th dyad of 1-d wavelet xform
// Usage
// ix = dyad(j);
// Inputs
// j integer
// Outputs
// ix list of all indices of wavelet coeffts at j-th level
//
// Copyright Aldo I Maalouf
i = (2^(j)+1):(2^(j+1)) ;
endfunction
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?