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

    function out=fixpoints(des)
%FIXPOINTS Return fixed design points
%
%  INDS=FIXPOINTS(D) returns the indices of the currently fixed points.
%  These are points that have either been fixed by the user or marked as
%  data points.
%
%  See also: FREEPOINTS

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


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