⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 packet.sci

📁 小波分解源代码
💻 SCI
字号:
function p=packet(d,b,n)
// packet -- Packet table indexing
//  Usage
//    p = packet(d,b,n)
//  Inputs
//    d     depth of splitting in packet decomposition
//    b     block index among 2^d possibilities at depth d
//    n     length of signal
//  Outputs
//    p     linear indices of all coeff's in that block
//
//  Copyright Aldo I Maalouf

npack = 2^d;
p =  ( (b * (n/npack) + 1) : ((b+1)*n/npack ) ) ;
endfunction

⌨️ 快捷键说明

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