www.gusucode.com > mbcdesign 工具箱 matlab 源码程序 > mbcdesign/@coninputfactor/horzcat.m

    function cif = horzcat(varargin)
%HORZCAT Horizontal concatenation of constraint input factors
%
%   CIF = HORZCAT(A, B, C, ...) is the concatenation of the constraint input
%   factors A, B, C, ... .
%
%   [A B] is the horizontal concatenation of constraint input factors A and B.
%   [A, B] is the same thing. 
%
%   See also CONBASE, CONINPUTFACTOR, CONINPUTFACTOR/CAT, CONINPUTFACTOR/VERTCAT.

%  Copyright 2004-2007 The MathWorks, Inc.

try
    cif = cat( 2, varargin{:} );
catch E
    throw( E );
end