📄 modulateflip.m
字号:
% [HFILT] = modulateFlipShift(LFILT)%% QMF/Wavelet highpass filter construction: modulate by (-1)^n,% reverse order (and shift by one, which is handled by the convolution% routines). This is an extension of the original definition of QMF's% (e.g., see Simoncelli90).% Eero Simoncelli, 7/96.function [hfilt] = modulateFlipShift(lfilt)lfilt = lfilt(:);sz = size(lfilt,1);sz2 = ceil(sz/2);ind = [sz:-1:1]';hfilt = lfilt(ind) .* (-1).^(ind-sz2);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -