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

📄 subordinatepass.m

📁 EZW implementation which will use wavelet transforms and do the compression decompression using EZW
💻 M
字号:
function S = subordinatepass(sublist,threshold) 
S=[];
[m,n]=size(sublist);
for i=1:n;
     if bitand(round(sublist(1,i)),threshold)==threshold,%
%    if sublist(1,i)>=threshold,
         S=[S,1];
%        sublist(1,i)=sublist(1,i)-threshold;
    else S=[S,0]; 
    end
end

 

 

 

     

         



⌨️ 快捷键说明

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