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

波变换

开发平台:

Matlab

  1. function M = horzcat(varargin)
  2. %HORZCAT Horizontal concatenation of Laurent polynomials.
  3. %   M = HORZCAT(P1,P2,...) performs the concatenation 
  4. %   operation M = [P1 , P2 , ...]. M is a Laurent matrix.
  5. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 19-Jun-2003.
  6. %   Last Revision: 21-Jun-2003.
  7. %   Copyright 1995-2004 The MathWorks, Inc.
  8. %   $Revision: 1.1.6.2 $  $Date: 2004/04/13 00:38:43 $
  9. M = laurmat(varargin(:)');