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

📄 data.m

📁 任意边界结构正交曲线网格生成程序
💻 M
字号:
function theResult = data(self, theNewData)% ps/data -- Set/get "ps" data.%  data(self) gets the data associated%   with self, a "ps" object.%  data(self, theNewData) sets the data%   associated with self to theNewData. % 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 09-Dec-1999 00:34:18.% Updated    09-Dec-1999 05:26:41.if nargout > 0, theResult = []; endif nargin < 1, help(mfilename), return, endtheHandle = handle(self);u = get(theHandle, 'UserData');if nargin < 2	result = u.ps_Data;else	u.ps_Data = theNewData;	set(theHandle, 'UserData', u)	result = self;endif nargin > 0	theResult = result;else	assignin('caller', 'ans', result)	disp(result)end

⌨️ 快捷键说明

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