亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? exportfig.m

?? kalman濾波全部份,供大家參考!!!
?? M
?? 第 1 頁 / 共 3 頁
字號:
function varargout = exportfig(varargin)
%EXPORTFIG  Export a figure.
%   EXPORTFIG(H, FILENAME) writes the figure H to FILENAME.  H is
%   a figure handle and FILENAME is a string that specifies the
%   name of the output file.
%
%   EXPORTFIG(H, FILENAME, OPTIONS) writes the figure H to FILENAME
%   with options initially specified by the structure OPTIONS. The
%   field names of OPTIONS must be legal parameters listed below
%   and the field values must be legal values for the corresponding
%   parameter. Default options can be set in releases prior to R12
%   by storing the OPTIONS structure in the root object's appdata
%   with the command 
%      setappdata(0,'exportfigdefaults', OPTIONS) 
%   and for releases after R12 by setting the preference with the
%   command 
%      setpref('exportfig', 'defaults', OPTIONS) 
%
%   EXPORTFIG(...,PARAM1,VAL1,PARAM2,VAL2,...) specifies
%   parameters that control various characteristics of the output
%   file. Any parameter value can be the string 'auto' which means
%   the parameter uses the default factory behavior, overriding
%   any other default for the parameter.
%
%   Format Paramter:
%     'Format'  a string
%          specifies the output format. Defaults to 'eps'. For a
%          list of export formats type 'help print'.
%     'Preview' one of the strings 'none', 'tiff'
%          specifies a preview for EPS files. Defaults to 'none'.
%
%   Size Parameters:
%     'Width'   a positive scalar
%          specifies the width in the figure's PaperUnits
%     'Height'  a positive scalar
%          specifies the height in the figure's PaperUnits
%     'Bounds' one of the strings 'tight', 'loose'
%          specifies a tight or loose bounding box. Defaults to 'tight'.
%     'Reference' an axes handle or a string
%          specifies that the width and height parameters
%          are relative to the given axes. If a string is
%          specified then it must evaluate to an axes handle.
%
%     Specifying only one dimension sets the other dimension
%     so that the exported aspect ratio is the same as the
%     figure's or reference axes' current aspect ratio. 
%     If neither dimension is specified the size defaults to 
%     the width and height from the figure's or reference
%     axes' size. Tight bounding boxes are only computed for
%     2-D views and in that case the computed bounds enclose all
%     text objects.
%           
%   Rendering Parameters:
%     'Color'     one of the strings 'bw', 'gray', 'cmyk'
%         'bw'    specifies that lines and text are exported in
%                 black and all other objects in grayscale
%         'gray'  specifies that all objects are exported in grayscale
%         'rgb'   specifies that all objects are exported in color
%                 using the RGB color space
%         'cmyk'  specifies that all objects are exported in color
%                 using the CMYK color space
%     'Renderer'  one of 'painters', 'zbuffer', 'opengl'
%         specifies the renderer to use
%     'Resolution'   a positive scalar
%         specifies the resolution in dots-per-inch.
%     'LockAxes'  one of 0 or 1
%         specifies that all axes limits and ticks should be fixed
%         while exporting.
%     
%     The default color setting is 'bw'.
%
%   Font Parameters:
%     'FontMode'     one of the strings 'scaled', 'fixed'
%     'FontSize'     a positive scalar
%          in 'scaled' mode multiplies with the font size of each
%          text object to obtain the exported font size
%          in 'fixed' mode specifies the font size of all text
%          objects in points
%     'DefaultFixedFontSize' a positive scalar
%          in 'fixed' mode specified the default font size in
%          points
%     'FontSizeMin' a positive scalar
%          specifies the minimum font size allowed after scaling
%     'FontSizeMax' a positive scalar
%          specifies the maximum font size allowed after scaling
%     'FontEncoding' one of the strings 'latin1', 'adobe'
%          specifies the character encoding of the font
%     'SeparateText' one of 0 or 1
%          specifies that the text objects are stored in separate
%          file as EPS with the base filename having '_t' appended.
%
%     If FontMode is 'scaled' but FontSize is not specified then a
%     scaling factor is computed from the ratio of the size of the
%     exported figure to the size of the actual figure.
%
%     The default 'FontMode' setting is 'scaled'.
%
%   Line Width Parameters:
%     'LineMode'     one of the strings 'scaled', 'fixed'
%     'LineWidth'    a positive scalar
%     'DefaultFixedLineWidth' a positive scalar
%     'LineWidthMin' a positive scalar
%          specifies the minimum line width allowed after scaling
%     'LineWidthMax' a positive scalar
%          specifies the maximum line width allowed after scaling
%     The semantics of 'Line' parameters are exactly the
%     same as the corresponding 'Font' parameters, except that
%     they apply to line widths instead of font sizes.
%
%   Style Map Parameter:
%     'LineStyleMap'    one of [], 'bw', or a function name or handle
%          specifies how to map line colors to styles. An empty
%          style map means styles are not changed. The style map
%          'bw' is a built-in mapping that maps lines with the same
%          color to the same style and otherwise cycles through the
%          available styles. A user-specified map is a function
%          that takes as input a cell array of line objects and
%          outputs a cell array of line style strings. The default
%          map is [].
%      
%   Examples:
%     exportfig(gcf,'fig1.eps','height',3);
%       Exports the current figure to the file named 'fig1.eps' with
%       a height of 3 inches (assuming the figure's PaperUnits is 
%       inches) and an aspect ratio the same as the figure's aspect
%       ratio on screen.
%
%     opts = struct('FontMode','fixed','FontSize',10,'height',3);
%     exportfig(gcf, 'fig2.eps', opts, 'height', 5);
%       Exports the current figure to 'fig2.eps' with all
%       text in 10 point fonts and with height 5 inches.
%
%   See also PREVIEWFIG, APPLYTOFIG, RESTOREFIG, PRINT.

%  Copyright 2000 Ben Hinkle
%  Email bug reports and comments to bhinkle@mathworks.com

if (nargin < 2)
  error('Too few input arguments');
end

% exportfig(H, filename, [options,] ...)
H = varargin{1};
if ~LocalIsHG(H,'figure')
  error('First argument must be a handle to a figure.');
end
filename = varargin{2};
if ~ischar(filename)
  error('Second argument must be a string.');
end
paramPairs = {varargin{3:end}};
if nargin > 2
  if isstruct(paramPairs{1})
    pcell = LocalToCell(paramPairs{1});
    paramPairs = {pcell{:}, paramPairs{2:end}};
  end
end
verstr = version;
majorver = str2num(verstr(1));
defaults = [];
if majorver > 5
  if ispref('exportfig','defaults')
    defaults = getpref('exportfig','defaults');
  end
elseif exist('getappdata')
  defaults = getappdata(0,'exportfigdefaults');
end
if ~isempty(defaults)
  dcell = LocalToCell(defaults);
  paramPairs = {dcell{:}, paramPairs{:}};
end

% Do some validity checking on param-value pairs
if (rem(length(paramPairs),2) ~= 0)
  error(['Invalid input syntax. Optional parameters and values' ...
	 ' must be in pairs.']);
end

auto.format = 'eps';
auto.preview = 'none';
auto.width = -1;
auto.height = -1;
auto.color = 'bw';
auto.defaultfontsize=10;
auto.fontsize = -1;
auto.fontmode='scaled';
auto.fontmin = 8;
auto.fontmax = 60;
auto.defaultlinewidth = 1.0;
auto.linewidth = -1;
auto.linemode=[];
auto.linemin = 0.5;
auto.linemax = 100;
auto.fontencoding = 'latin1';
auto.renderer = [];
auto.resolution = [];
auto.stylemap = [];
auto.applystyle = 0;
auto.refobj = -1;
auto.bounds = 'tight';
explicitbounds = 0;
auto.lockaxes = 1;
auto.separatetext = 0;
opts = auto;

% Process param-value pairs
args = {};
for k = 1:2:length(paramPairs)
  param = lower(paramPairs{k});
  if ~ischar(param)
    error('Optional parameter names must be strings');
  end
  value = paramPairs{k+1};
  
  switch (param)
   case 'format'
    opts.format = LocalCheckAuto(lower(value),auto.format);
    if strcmp(opts.format,'preview')
      error(['Format ''preview'' no longer supported. Use PREVIEWFIG' ...
	     ' instead.']);
    end
   case 'preview'
    opts.preview = LocalCheckAuto(lower(value),auto.preview);
    if ~strcmp(opts.preview,{'none','tiff'})
      error('Preview must be ''none'' or ''tiff''.');
    end
   case 'width'
    opts.width = LocalToNum(value, auto.width);
    if ~ischar(value) | ~strcmp(value,'auto')
      if ~LocalIsPositiveScalar(opts.width)
	error('Width must be a numeric scalar > 0');
      end
    end
   case 'height'
    opts.height = LocalToNum(value, auto.height);
    if ~ischar(value) | ~strcmp(value,'auto')
      if(~LocalIsPositiveScalar(opts.height))
	error('Height must be a numeric scalar > 0');
      end
    end
   case 'color'
    opts.color = LocalCheckAuto(lower(value),auto.color);
    if ~strcmp(opts.color,{'bw','gray','rgb','cmyk'})
      error('Color must be ''bw'', ''gray'',''rgb'' or ''cmyk''.');
    end
   case 'fontmode'
    opts.fontmode = LocalCheckAuto(lower(value),auto.fontmode);
    if ~strcmp(opts.fontmode,{'scaled','fixed'})
      error('FontMode must be ''scaled'' or ''fixed''.');
    end
   case 'fontsize'
    opts.fontsize = LocalToNum(value,auto.fontsize);
    if ~ischar(value) | ~strcmp(value,'auto')
      if ~LocalIsPositiveScalar(opts.fontsize)
	error('FontSize must be a numeric scalar > 0');
      end
    end
   case 'defaultfixedfontsize'
    opts.defaultfontsize = LocalToNum(value,auto.defaultfontsize);
    if ~ischar(value) | ~strcmp(value,'auto')
      if ~LocalIsPositiveScalar(opts.defaultfontsize)
	error('DefaultFixedFontSize must be a numeric scalar > 0');
      end
    end
   case 'fontsizemin'
    opts.fontmin = LocalToNum(value,auto.fontmin);
    if ~ischar(value) | ~strcmp(value,'auto')
      if ~LocalIsPositiveScalar(opts.fontmin)
	error('FontSizeMin must be a numeric scalar > 0');
      end
    end
   case 'fontsizemax'
    opts.fontmax = LocalToNum(value,auto.fontmax);
    if ~ischar(value) | ~strcmp(value,'auto')
      if ~LocalIsPositiveScalar(opts.fontmax)
	error('FontSizeMax must be a numeric scalar > 0');
      end
    end
   case 'fontencoding'
    opts.fontencoding = LocalCheckAuto(lower(value),auto.fontencoding);
    if ~strcmp(opts.fontencoding,{'latin1','adobe'})
      error('FontEncoding must be ''latin1'' or ''adobe''.');
    end
   case 'linemode'
    opts.linemode = LocalCheckAuto(lower(value),auto.linemode);
    if ~strcmp(opts.linemode,{'scaled','fixed'})
      error('LineMode must be ''scaled'' or ''fixed''.');
    end
   case 'linewidth'
    opts.linewidth = LocalToNum(value,auto.linewidth);
    if ~ischar(value) | ~strcmp(value,'auto')
      if ~LocalIsPositiveScalar(opts.linewidth)
	error('LineWidth must be a numeric scalar > 0');
      end
    end
   case 'defaultfixedlinewidth'
    opts.defaultlinewidth = LocalToNum(value,auto.defaultlinewidth);
    if ~ischar(value) | ~strcmp(value,'auto')
      if ~LocalIsPositiveScalar(opts.defaultlinewidth)
	error(['DefaultFixedLineWidth must be a numeric scalar >' ...
	       ' 0']);
      end
    end
   case 'linewidthmin'
    opts.linemin = LocalToNum(value,auto.linemin);
    if ~ischar(value) | ~strcmp(value,'auto')
      if ~LocalIsPositiveScalar(opts.linemin)
	error('LineWidthMin must be a numeric scalar > 0');
      end
    end
   case 'linewidthmax'
    opts.linemax = LocalToNum(value,auto.linemax);
    if ~ischar(value) | ~strcmp(value,'auto')
      if ~LocalIsPositiveScalar(opts.linemax)
	error('LineWidthMax must be a numeric scalar > 0');
      end
    end
   case 'linestylemap'
    opts.stylemap = LocalCheckAuto(value,auto.stylemap);
   case 'renderer'
    opts.renderer = LocalCheckAuto(lower(value),auto.renderer);
    if ~ischar(value) | ~strcmp(value,'auto')
      if ~strcmp(opts.renderer,{'painters','zbuffer','opengl'})
	error(['Renderer must be ''painters'', ''zbuffer'' or' ...
	       ' ''opengl''.']);
      end
    end
   case 'resolution'
    opts.resolution = LocalToNum(value,auto.resolution);
    if ~ischar(value) | ~strcmp(value,'auto')
      if ~(isnumeric(value) & (prod(size(value)) == 1) & (value >= 0));

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色天天综合久久久久综合片| 欧美日韩免费一区二区三区视频 | 91福利国产精品| 精品综合免费视频观看| 亚洲在线中文字幕| 久久久久99精品国产片| 9191成人精品久久| 91视频国产观看| 国产馆精品极品| 老司机精品视频导航| 亚洲一区电影777| 国产精品久久久久7777按摩| 精品国产伦一区二区三区观看体验 | 成人动漫在线一区| 国产综合色产在线精品| 日韩精品一二三区| 亚洲国产精品久久不卡毛片| 国产精品欧美精品| 久久久久亚洲综合| 精品国产在天天线2019| 91精品国产高清一区二区三区蜜臀 | 欧美高清在线一区二区| 精品国产一区二区三区av性色| 欧美视频一区在线观看| 色呦呦日韩精品| 不卡电影一区二区三区| 国产成人免费视频网站高清观看视频 | 欧美天堂一区二区三区| 91影院在线观看| 不卡的看片网站| 国产成人av电影在线| 国产精品影视天天线| 激情五月激情综合网| 久久99这里只有精品| 久久精品国产**网站演员| 三级一区在线视频先锋| 午夜电影网亚洲视频| 亚洲va欧美va人人爽午夜| 亚洲一区二区三区小说| 亚洲一区二区视频在线| 午夜精品久久久久久| 日韩高清在线电影| 九一九一国产精品| 在线播放视频一区| 欧美日韩国产美| 欧美一区二区三区在线看| 欧美一级淫片007| 久久久久国色av免费看影院| 久久免费美女视频| 亚洲国产精品ⅴa在线观看| 亚洲欧美在线观看| 伊人开心综合网| www.日本不卡| 91网站黄www| 欧美午夜在线观看| 91精品国产欧美一区二区| 久久众筹精品私拍模特| 中文字幕第一页久久| 亚洲精品成人悠悠色影视| 亚洲成人av一区| 蜜桃视频一区二区三区在线观看| 免费精品视频最新在线| 国产在线国偷精品产拍免费yy| 国产成a人亚洲| 在线观看视频一区二区| 欧美一区二区三区婷婷月色| 久久免费视频色| 一区二区三区四区视频精品免费| 婷婷一区二区三区| 激情小说亚洲一区| 色一情一伦一子一伦一区| 91精品免费在线观看| 久久久不卡网国产精品二区 | 亚洲国产经典视频| 亚洲一区二区三区中文字幕| 麻豆成人综合网| 成人v精品蜜桃久久一区| 欧美老人xxxx18| 国产片一区二区三区| 一区二区三区免费在线观看| 久久精品国产亚洲5555| 成人免费精品视频| 91精品国产福利在线观看 | 国产精品国产三级国产aⅴ入口 | 国产精品久线观看视频| 亚洲不卡av一区二区三区| 国产一区二区三区免费| 欧美午夜一区二区三区免费大片| 欧美tickle裸体挠脚心vk| 亚洲男同1069视频| 狠狠久久亚洲欧美| 91福利资源站| 国产精品入口麻豆原神| 日韩成人午夜精品| 91最新地址在线播放| 精品盗摄一区二区三区| 亚洲制服丝袜一区| 成人18视频在线播放| 欧美videos中文字幕| 亚洲国产视频直播| 国产99精品国产| 欧美成人官网二区| 亚洲小说春色综合另类电影| 国产91富婆露脸刺激对白| 91精品国产综合久久国产大片 | 国产精品久久久久桃色tv| 91丨国产丨九色丨pron| 日韩午夜av电影| 一区二区高清视频在线观看| 国产不卡一区视频| 日韩久久精品一区| 日韩成人av影视| 欧美在线短视频| 18欧美亚洲精品| 国产91富婆露脸刺激对白| 久久尤物电影视频在线观看| 调教+趴+乳夹+国产+精品| 91黄色免费网站| 亚洲欧洲av在线| 成人午夜免费av| 日本一区二区视频在线观看| 国产一区高清在线| 欧美成人aa大片| 麻豆精品视频在线观看视频| 欧美日韩一区二区欧美激情| 尤物视频一区二区| 一本大道久久a久久精二百| 国产精品短视频| 99久久er热在这里只有精品66| 26uuu精品一区二区三区四区在线| 日本系列欧美系列| 91麻豆精品国产91久久久资源速度 | 欧美一区二区福利在线| 亚洲五码中文字幕| 欧美主播一区二区三区美女| 又紧又大又爽精品一区二区| 一本久道久久综合中文字幕| 亚洲特黄一级片| 91激情五月电影| 亚洲午夜精品网| 欧美一区二区三区视频在线| 亚洲成av人影院| 欧美一区二区高清| 韩国成人精品a∨在线观看| 久久一区二区三区国产精品| 国产一二精品视频| 国产精品网站在线播放| 不卡的看片网站| 亚洲午夜在线视频| 欧美久久久久久蜜桃| 日本vs亚洲vs韩国一区三区二区 | 3751色影院一区二区三区| 天天综合天天做天天综合| 69av一区二区三区| 韩国av一区二区三区在线观看| 久久精品亚洲精品国产欧美| 国产风韵犹存在线视精品| 中文字幕亚洲精品在线观看| 色香蕉成人二区免费| 日韩激情中文字幕| 精品播放一区二区| 97国产一区二区| 亚洲电影一区二区| 欧美videossexotv100| 成人福利视频网站| 亚洲444eee在线观看| 日韩午夜av一区| 99免费精品在线观看| 婷婷综合久久一区二区三区| 久久亚洲春色中文字幕久久久| 成人一级视频在线观看| 亚洲成人精品在线观看| 欧美电影免费提供在线观看| 成人丝袜高跟foot| 日韩高清一级片| 国产精品久久99| 91精品国产综合久久香蕉麻豆| 国产乱国产乱300精品| 亚洲另类春色校园小说| 91精品在线一区二区| 成人深夜福利app| 男男视频亚洲欧美| 亚洲视频免费在线| 日韩欧美高清dvd碟片| caoporm超碰国产精品| 婷婷亚洲久悠悠色悠在线播放| 中文字幕精品—区二区四季| 欧美日韩免费电影| 国产999精品久久久久久| 视频一区中文字幕| 国产精品传媒视频| 久久综合九色综合欧美就去吻| 97精品国产97久久久久久久久久久久| 免费精品99久久国产综合精品| 成人免费小视频| 久久久国产一区二区三区四区小说| 在线观看日韩毛片| 成人免费毛片嘿嘿连载视频| 美脚の诱脚舐め脚责91| 亚洲激情自拍偷拍|