node.sci

来自「小波分解源代码」· SCI 代码 · 共 16 行

SCI
16
字号
function index = node(d,b)
// node -- Tree indexing function
//  Usage
//    index = node(d,b)
//  Inputs
//    d        depth from root of tree
//    b        index among the 2^d possibilities
//             in a left-right scan at that depth
//  Outputs
//    index    linear index of node in tree structure
//
//  Copyright Aldo I Maalouf
	
	index =  2^d + b;
	endfunction

⌨️ 快捷键说明

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