hello.m

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

M
20
字号
function hello(varargin)% hello -- Display a message.%  hello(theMessage) displays 'hello' plus theMessage.% Copyright (C) 1996 Dr. Charles R. Denham, ZYDECO.%  All Rights Reserved.%   Disclosure without written consent from the%    copyright owner does not constitute publication.if nargin < 1, theMessage = ''; ends = [' ## hello'];for i = 1:length(varargin)   s = [s ' ' mat2str(varargin{i})];enddisp(s)

⌨️ 快捷键说明

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