ctranspose.m
上传用户:haiyisale
上传日期:2013-01-09
资源大小:3246k
文件大小:0k
源码类别:

波变换

开发平台:

Matlab

  1. function B = ctranspose(A)
  2. %CTRANSPOSE Laurent matrix transpose (non-conjugate).
  3. %    B = CTRANSPOSE(A) is called for the syntax A' (non-conjugate
  4. %    transpose) when A is a Laurent matrix object.
  5. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 30-Mar-2001.
  6. %   Last Revision 12-Jun-2003.
  7. %   Copyright 1995-2004 The MathWorks, Inc.
  8. %   $Revision: 1.1.6.2 $ $Date: 2004/04/13 00:39:10 $ 
  9. MA = A.Matrix;
  10. B = laurmat(MA');