📄 version_info.m
字号:
%version_info
% James Bordner and Faisal Saied
% Department of Computer Science
% University of Illinois at Urbana-Champaign
% 10 April 1995
% Modified for Matlab Version 6 and 7 Compatability
% Ryan McKenzie
% University of Kentucky Center for Computational Sciences
% April-September 2004
function version_info
%
%
%
demo_globals
page=[ ' Version Information ';...
' ';...
' ';...
' September 25, 2004 ';...
' ';...
' This is a modification for the first release of ';...
' MGLab (Version 1.0) to allow use in ';...
' Matlab V6 and V7 (Through Release 14) ';...
' ';...
' Original MGLab 1.0 Programmers: ';...
' James Bordner bordner@cs.uiuc.edu ';...
' Faisal Saied saied@cs.uiuc.edu ';...
' ';...
' University of Illinois at Urbana-Champaign ';...
' Department of Computer Science ';...
' ';...
' ';...
' Matlab 6 and 7 Compatability Programmer: ';...
' Ryan McKenzie rnmcke0@uky.edu ';...
' ';...
' University of Kentucky ';...
' Center for Computational Sciences ';...
];
DEMO_INFO_FIG = figure('Position', [30 30 500 600],...
'Name', 'Version Info',...
'NumberTitle', 'off', ...
'Color','blue');
[mm,nn] = size(page);
subplot(1,1,1)
hold off
cla
ht = 0.95;
for j = 1:mm
text(0.05, ht, page(j,:))
axis('off')
ht = ht - 0.04;
end
cb_uic_close = 'close(DEMO_INFO_FIG)';
demo1_uic_close = uicontrol( 'Position', [0.55 0.05 0.20 0.07],...
'units', 'normalized',...
'style', 'pushbutton', ...
'string', 'Close',...
'backgroundcolor', 'cyan',...
'foregroundcolor', [0 0 0],...
'callback', cb_uic_close);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -