⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 menu_header.m

📁 五点差分型多重网格方法:各种插值算子的比较)
💻 M
字号:
%MENU_HEADER Generate a menu header
%
%       F_M = MENU_HEADER(PARENT,LABEL,SEPARATOR,ENABLE,BGCOLOR) creates
%       a menu with the given parameters and returns its handle.

% James Bordner and Faisal Saied
% Department of Computer Science
% University of Illinois at Urbana-Champaign
% 10 April 1995

% Modified for Matlab Version 6 Compatability
% Ryan McKenzie
% University of Kentucky Center for Computational Sciences
% April 2004
%
% Removed depricated menu header option "BackgroundColor"

function f_m = menu_header(parent,label,separator,enable,bgcolor)

f_m = uimenu(parent,...
     'Label',label,...
     'Separator', separator,...
     'Enable', enable);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -