web.m

来自「任意边界结构正交曲线网格生成程序」· M 代码 · 共 38 行

M
38
字号
function theResult = web(self)% web -- World Wide Web site of the SeaGrid Toolbox.%  web(no argument) displays or returns the WWW%   site for the SeaGrid Toolbox.  If displayed,%   a dialog asks whether to go there. % Copyright (C) 1999 Dr. Charles R. Denham, ZYDECO.%  All Rights Reserved.%   Disclosure without explicit written consent from the%    copyright owner does not constitute publication. % Version of 28-Apr-1999 19:30:28.% Updated    29-Sep-1999 11:19:35.theURL = 'http://crusty.er.usgs.gov/~cdenham/seagrid/seagrid.html';if nargout > 0	theResult = theURL;else	disp(['## SeaGrid Toolbox Home Page:'])	disp(['## ' theURL])	theButton =  questdlg('Go To SeaGrid Toolbox Home Page?', 'WWW', 'Yes', 'No', 'No');	if isequal(theButton, 'Yes')		theStatus = web(theURL);		switch theStatus		case 1			disp(' ## Could not find Web Browser.')			disp(' ## See "help web".')		case 2			disp(' ## Web Browser found, but could not be launched.')			disp(' ## See "help web".')			help(web)		otherwise		end	endend

⌨️ 快捷键说明

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