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

📄 b_11i_norm2.m

📁 You need to download the general purpose toolbox and the signal toolbox. You need to unzip these
💻 M
字号:
function [y]=b_11i_norm2(x)%function [y]=b_11i_norm2(x)[m,n]=size(x);%scale = sqrt(2).^([0 floor(log2([1:n-1]))+1]);scale = ones(size(x));level = log2(n);snorm = zeros(1,level);xtemp = abs(x).*scale;for k=1:level ei = 2^k; si = ei/2 + 1; snorm(k) = sum(sum(xtemp(si:ei,si:ei)+xtemp(1:si-1,si:ei)+xtemp(si:ei,1:si-1)));end;y = max(snorm) + abs(x(1,1)); 

⌨️ 快捷键说明

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