type3detransform.m
来自「matlab官方网站中的用于图像融合技术的contourlet变换源代码」· M 代码 · 共 17 行
M
17 行
%type3detransform.m%written by: Duncan Po%Date: June 27/2002% utility file used in tree2contourlet.m% usage [x,y] = type3detransform(z)% decomposes z into x and yfunction [x,y] = type3detransform(z)row = size(z,1);col = size(z,2);z = z.';z = reshape(z, col*2, row/2);z = z.';x = z(:, 1:col);y = z(:,(col+1):(2*col));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?