psbind.m
来自「一些制作正交曲线网格的matlab源程序」· M 代码 · 共 33 行
M
33 行
function theResult = psbind(self)% psbind -- Bind a "ps" object to its handle.% psbind(self) binds self, a "ps" object, to% its handle. % 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 10-Dec-1999 15:03:28.% Updated 10-Dec-1999 15:03:28.if nargout > 0, theResult = []; endif nargin < 1, help(mfilename), return, endtheHandle = handle(self);u = [];u.ps_Self = self;u.ps_Data = [];u.ps_Data.Handle = theHandle;u.ps_Data.UserData = get(theHandle, 'UserData');set(theHandle, 'UserData', u)if nargout > 0 theResult = self;else assignin('caller', 'ans', self)end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?