📄 handle.m
字号:
function theResult = handle(self)% ps/handle -- Handle of a "ps" object.% handle(self) returns the handle associated% with self, a "ps" object. % 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:30:47.% Updated 09-Dec-1999 00:30:47.if nargout > 0, theResult = []; endif nargin < 1, help(mfilename), return, endresult = ps(self);if nargout > 0 theResult = result;else assignin('caller', 'ans', result') disp(result)end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -