super.m
来自「一些制作正交曲线网格的matlab源程序」· M 代码 · 共 38 行
M
38 行
function theSuperObject = super(theObject)% super -- Super-object of an object.% super(theObject) returns the super-object% of theObject, or [] if none exists. The% super-object is the bottom-most object% in the struct of theObject, if any.% Copyright (C) 1996 Dr. Charles R. Denham, ZYDECO.% All Rights Reserved.% Disclosure without written consent from the% copyright owner does not constitute publication. % Version of 04-Apr-1997 16:51:36.% Revised 02-Nov-1998 08:26:00.if nargin < 1, help super, return, endif isobject(theObject) theStruct = struct(theObject); else theStruct = theObject;ends = [];f = fieldnames(theStruct);if ~isempty(f) s = getfield(theStruct, f{length(f)}); if ~isobject(s), s = []; endendif nargout > 0 theSuperObject = s; else disp(s)end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?