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

    function super_syncGUIvals(h,arrayh)
%SYNCGUIVALS Sync values from frames.
%
%   Inputs:
%       h - handle to this object   
%       arrayh - array of handles to frames

%   Author(s): R. Losada
%   Copyright 1988-2002 The MathWorks, Inc.

narginchk(2,2);

% Call the base method
base_syncGUIvals(h,arrayh);

% Get handle to frame
hf = find(arrayh,'Tag','siggui.filterorder');

% Store specs in object
set(h,'order',evaluatevars(get(hf,'order')));