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

📄 refresh.m

📁 基于matlab的反演程序,用于地球物理勘探中射线追踪及偏移成像程序.
💻 M
字号:
function refresh(h)

% REFRESH REFRESH causes the current figure window to be
%	redrawn. REFRESH(h) causes the figure window specified
%	by handle h to be redrawn.

%	D. Thomas   5/26/93
%       Copyright (c) 1984-93 by The MathWorks, Inc.

if nargin==1,
	if strcmp(get(h,'type'),'figure'),
		set(h,'color',get(h,'color'))
	else,
		disp('Handle does not refer to a figure object')
	end
else,
	set(gcf,'color',get(gcf,'color'))
end

⌨️ 快捷键说明

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