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

    function s=texdescription(obj,IsBoundary)
%TEXDESCRIPTION  Return tex description string
%
%  S = TEXDESCRIPTION(OBJ)
%  S = TEXDESCRIPTION(OBJ,ISBOUNDARY)
%
%  A multiline description of the constraint class. This is used in the
%  constraint class chooser dialogs. For a description of the particular object
%  use the TOSTRING method.
%
%  See also CONSTAR, CONSTAR/TOSTRING, CONBASE/TEXDESCRIPTION

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

% assume boundary only
s = { ...
    'Star-shaped regions are similar to convex regions but instead'; ...
    'need only be visible from one point. Here the region is based'; ...
    'on samples of the interior or the boundary. '};

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