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

📄 fm_author.m

📁 电力系统分析计算程序
💻 M
字号:
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:    Federico.Milano@uclm.es%Web-site:  http://www.uclm.es/area/gsee/Web/Federico%% Copyright (C) 2002-2008 Federico Milanoglobal Settings Fig Path Themeif Fig.author > 0, figure(Fig.author), return, endif enter ~= 3280, return, endh0 = 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -