⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iptprefs.m

📁 有关matlab的电子书籍有一定的帮助希望有用
💻 M
字号:
function preferences = iptprefs
%IPTPREFS Image Processing Toolbox preference settings.
%   IPTPREFS returns a 3-column cell array containing the Image
%   Processing Toolbox preference settings.  Each row contains
%   information about a single preference.  
%   
%   The first column of each row contains a string indicating the
%   name of the preference.  The second column of each row is a
%   cell array containing the set of acceptable values for that
%   preference setting.  An empty cell array indicates that the
%   preference does not have a fixed set of values.  
%
%   The third column of each row contains a single-element cell
%   array containing the default value for the preference.  An
%   empy cell array indicates that the preference does not have a
%   default value.
%
%   See also IPTSETPREF, IPTGETPREF.

%   Steven L. Eddins, January 1997.
%   Copyright 1993-1998 The MathWorks, Inc.  All Rights Reserved.
%   $Revision: 1.8 $  $Date: 1997/11/24 16:21:52 $

preferences = { ...
      'ImshowBorder',        {'tight'; 'loose'},        {'loose'}
      'ImshowAxesVisible',   {'on'; 'off'},             {'off'}
      'ImshowTruesize',      {'auto'; 'manual'},        {'auto'}
      'TruesizeWarning',     {'on'; 'off'},             {'on'}
   };
        

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -