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

    function s=texdescription(obj,IsBoundary)
%TEXDESCRIPTION  Return tex description string
%
%  S = TEXDESCRIPTION(OBJ)
%  S = TEXDESCRIPTION(OBJ,ISBOUNDARY)


%  Copyright 2000-2008 The MathWorks, Inc. and Ford Global Technologies, Inc.

if nargin<2 || ~IsBoundary
    s = { ...
        'Boolean constraints provide a means for combining other '; ...
        'constraint objects with boolean operators such as ''and'', ';...
        '''or'', ''xor'', and ''not''.' };
else
    s = { ...
        'Boolean boundaries provide a means for combining other '; ...
        'boundaries objects with boolean operators such as ''and'', ';...
        '''or'', ''xor'', and ''not''.' };
end

% EOF