type4transform.m

来自「matlab官方网站中的用于图像融合技术的contourlet变换源代码」· M 代码 · 共 20 行

M
20
字号
%type4transform.m%written by: Duncan Po%Date: June 8/2002% utility file used in contourlet2tree.m% usage: x = type4transform(y,z)% combines y and z to give xfunction x = type4transform(y,z)row = size(y,1);col = size(y,2);y = y.';z = z.';y = reshape(y, col*2, row/2);z = reshape(z, col*2, row/2);x = [y; z];x = reshape(x, col, 2*row);x = x.';

⌨️ 快捷键说明

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