imagesc.m
来自「matlab 模式识别工具包 希望能对你们有用」· M 代码 · 共 22 行
M
22 行
%IMAGESC Image display, automatic scaling, no menubar%% See SHOW.% Copyright: R.P.W. Duin, duin@ph.tn.tudelft.nl% Faculty of Applied Physics, Delft University of Technology% P.O. Box 5046, 2600 GA Delft, The Netherlandsfunction h = imagesc(a,nx) if (nargin < 2) hh = show(a); else hh = show(a,nx); end; if (nargout > 0) h = hh; end;return
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?