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

    function [con, ok,opts] = guiSetFitOptions(con, action,opts)
%GUISETFITOPTIONS GUI for the user to set the fit options for a development node
%
%  [BDEV, OK] = GUISETFITOPTIONS(BDEV, ACTION)
%  [BDEV, OK] = GUISETFITOPTIONS(BDEV, 'All')
%  [BDEV, OK] = GUISETFITOPTIONS(BDEV, 'SpecialPoints')
%  [BDEV, OK] = GUISETFITOPTIONS(BDEV, 'BoundaryPoints')
%  [BDEV, OK] = GUISETFITOPTIONS(BDEV, 'Constraint')
%
%  See also XREGBDRYDEV, XREGBDRYDEV/FITCONSTRAINT.

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

% Constraint must be initialized before calling

clocal = con.ConList{1};
[clocal, ok,opts] = guiSetFitOptions(clocal, action,opts);

end

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