type3transform.m
上传用户:l56789
上传日期:2022-02-25
资源大小:2422k
文件大小:0k
源码类别:

图形图像处理

开发平台:

Matlab

  1. %type3transform.m
  2. %written by: Duncan Po
  3. %Date: June 8/2002
  4. % utility file used in contourlet2tree.m
  5. % usage: x = type3transform(y,z)
  6. % combines y and z to give x
  7.  
  8. function x = type3transform(y,z)
  9. row = size(y,1);
  10. col = size(y,2);
  11. x = [y z];
  12. x = x.';
  13. x = reshape(x, col, 2*row);
  14. x = x.';