📄 getaxis.m
字号:
%========================================
function [rect]=getaxis(handle)
% function [rect]=getaxis(handle)
%
% GETAXIS returns a row vector containing the scaling for
% the plot with a given handle.
%
% See also AXIS.
%
% Statistical Pattern Recognition Toolbox, Vojtech Franc, Vaclav Hlavac
% (c) Czech Technical University Prague, http://cmp.felk.cvut.cz
% Written Vojtech Franc (diploma thesis) 02.01.2000
% Modifications
% 24. 6.00 V. Hlavac, comments polished.
rect=[get(handle,'XLim'),get(handle,'YLim'),get(handle,'ZLim')];
return;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -