📄 doview.m
字号:
function theResult = doview(self, varargin)% ps/view -- Toggle between view(2) and view(3).% view(self) toggles the view of axes 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 10-Nov-1999 08:17:04.% Updated 17-Nov-1999 09:05:37.if nargout > 0, theResult = []; endtheMenu = gcbo;v = view;if norm(diag(view)) > 1.9 view(3) if any(theMenu), set(gcbo, 'Checked', 'on'), endelse view(2) if any(theMenu), set(gcbo, 'Checked', 'off'), endendif nargout > 0 theResult = self;else assignin('caller', 'ans', self)end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -