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

📄 checkchildren.m

📁 EZW implementation which will use wavelet transforms and do the compression decompression using EZW
💻 M
字号:
function   [RR]=checkchildren(j,RR)
set(0,'RecursionLimit',10000);
% if a symbol 't' is encounted, then make all its descendants in reference  
% matrix RR's components equal 1---ZEROTREES
global N
[m,n]=size(N);
for i=(4*j-3):4*j;
    if  i<=m, 
        RR(N(i,1),N(i,2))=1;
        [RR]=checkchildren(i,RR);
    end
end;

   



⌨️ 快捷键说明

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