fm_author.m

来自「这是一个很适合研究和学习用的电力系统仿真软件」· M 代码 · 共 66 行

M
66
字号
function fig = fm_author(enter)
% FM_AUTHOR create a splash window with the author's pic
%
% FM_AUTHOR(CODE)
%
%Author:    Federico Milano
%Date:      11-Nov-2002
%Version:   1.0.0
%
%E-mail:    fmilano@thunderbox.uwaterloo.ca
%Web-site:  http://thunderbox.uwaterloo.ca/~fmilano
%
% Copyright (C) 2002-2006 Federico Milano

global Settings Fig Path Theme

if Fig.author > 0, figure(Fig.author), return, end

if enter ~= 3280, return, end

h0 = figure('Units','normalized', ...
	    'Color',Theme.color02, ...
	    'Colormap',[], ...
	    'CreateFcn','Fig.author = gcf;', ...
	    'DeleteFcn','Fig.author = 0;', ...
	    'KeyPressFcn','close(gcf)', ...
	    'FileName','fm_author(3280)', ...
	    'MenuBar','none', ...
	    'Name','The author!', ...
	    'NumberTitle','off', ...
	    'PaperPosition',[18 180 576 432], ...
	    'PaperUnits','points', ...
	    'Position',sizefig(0.4,0.4*1.578), ...
	    'Resize','on', ...
	    'ResizeFcn','doresize(gcbf)', ...
	    'ToolBar','none', ...
	    'WindowButtonDownFcn','close(gcf)');

h1 = axes('Parent',h0, ...
	  'Box','on', ...
	  'CameraUpVector',[0 1 0], ...
	  'Color',Theme.color04, ...
	  'ColorOrder',Settings.color, ...
	  'Layer','top', ...
	  'Position',[0.1 0.1 0.8 0.8], ...
	  'Tag','Axes1', ...
	  'XColor',[0 0 0.5], ...
	  'XLim',[0.5 700.5], ...
	  'XLimMode','manual', ...
	  'XTickLabelMode','manual', ...
	  'XTickMode','manual', ...
	  'YColor',[0 0 0.5], ...
	  'YDir','reverse', ...
	  'YLim',[0.5 101.5], ...
	  'YLimMode','manual', ...
	  'YTickLabelMode','manual', ...
	  'YTickMode','manual', ...
	  'ZColor',[0 0 0]);
h2 = image('Parent',h1, ...
	   'CData',imread([Path.images,'misc_view.jpg'],'jpg'), ...
	   'Tag','Axes1Image1', ...
	   'XData',[1 700], ...
	   'YData',[1 101]);

if nargout > 0, fig = h0; end

⌨️ 快捷键说明

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