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

    function out=freepoints(des,inds)
%FREEPOINTS Return free design points
%
%  INDS=FREEPOINTS(D) returns the current free points.  These are points
%  that have not either been fixed by the user or marked as data points.
%
%  See also: FIXPOINTS

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


out = find(~(pGetFlags(des, 'FIXED') | pGetFlags(des, 'DATA')));