📄 window.m
字号:
%
% Syntax: h = window(strCaption,strMenubar)
%
% Inputs: strCaption is a string containing the caption for the new window.
% strMenubar is a string that contains either 'figure' or 'none'.
%
% Result: h is a handle to a new figure window, titled strCaption.
% If strMenubar = 'figure', default figure window menus are displayed.
% If strMenubar = 'none', no menu is displayed.
%
% Petur Snaeland, 25.04.1995
%
function [hFigure] = window(strCaption,strMenubar)
hFigure = figure( ...
'NumberTitle','off', ...
'MenuBar',strMenubar, ...
'Name',strCaption );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -