compute_quadrant_selection.m

来自「signal procesing toolbox」· M 代码 · 共 23 行

M
23
字号
function [selx,sely] = compute_quadrant_selection(j,q, options)% compute_quadrant_selection - compute the indices for selecting subband of a wavelet transform.%%   [selx,sely] = compute_quadrant_selection(j,q, options);%%   q=1 is for phi/psi (on X / on Y)%   q=2 is for psi/phi (on X / on Y)%   q=3 is for psi/psi (on X / on Y)%%   % Suppose that MW contains a wavelet transform %   j = 4; q = 2;%   [selx,sely] = compute_quadrant_selection(j,q);%   MWs = MW(selx,sely);    % MWs contains the quadrant.%%   Depending on the transform you are using, you should %   set options.transform to %       'isotropic2d' (default): 2D standard wavelet basis.%       'quincunx': for quincunx transform (perform_quincunx_wavelet_transform).%       %%   Copyright (c) 2004 Gabriel Peyr

⌨️ 快捷键说明

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