www.gusucode.com > signal 工具箱matlab源码程序 > signal/@filtdes/@firclsmultiband/syncGUIvals.m

    function syncGUIvals(h, d, arrayh)
%SYNCGUIVALS Sync the specs from the GUI

%   Author(s): J. Schickler
%   Copyright 1988-2003 The MathWorks, Inc.

specs = whichspecs(h);

fr = whichframes(h);
fr = find(arrayh, '-class', fr.constructor);

for n = 1:length(specs),
	set(d, specs(n).name, evaluatevars(get(fr,specs(n).name)));
end

% [EOF]