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

    function roles = getInputRoles(con) %#ok con is not used
%GETINPUTROLES Get the list of role that each input active factor plays
%
%  ROLES = GETINPUTROLES(CON)
% 
%  ROLES will be a cell-str of size [1, nActiveFactors( con )].
% 
%  The role for an input is any special quality that it has over the other
%  inputs. For example, in a table constraint we distinguish between the input
%  and out to the table.
%
%  For a CONTABLE1, ROLES = {'X-axis', 'Y-axis'}.
%
%  See also CONTABLE1, CONBASE/GETINPUTROLES.

%  Copyright 2000-2005 The MathWorks, Inc.

roles = {'X-axis', 'Y-axis'};

%------------------------------------------------------------------------------|
% EOF
%------------------------------------------------------------------------------|