www.gusucode.com > sigtools 工具箱matlab源码程序 > sigtools/fdrmmenu.m

    function fdrmmenu(hndl)
%FDRMMENU Remove a menu from the Filter Design & Analysis Tool (FDATool).
%   FDRMMENU(HNDL) deletes a menu with handle HNDL.  HNDL can be a 
%   vector of handles.
%
%   EXAMPLE:
%   % Add a "Tools" menu to the menubar
%   h = fdatool;
%   hndl = fdaddmenu(h,6,'Tool&s');
%
%   % Remove the "Tools" menu from FDATool
%   fdrmmenu(hndl); 
%
%   See also FDADDMENU, DELETE.

%   Author(s): P. Costa 
%   Copyright 1988-2002 The MathWorks, Inc.

narginchk(1,1);
delete(hndl);

% [EOF]