vertcat.m
Upload User: haiyisale
Upload Date: 2013-01-09
Package Size: 3246k
Code Size: 0k
Category:

Wavelet

Development Platform:

Matlab

  1. function M = vertcat(varargin)
  2. %VERTCAT Vertical concatenation of Laurent polynomials.
  3. %   M = VERTCAT(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:39:28 $
  9. M = laurmat(varargin(:));