savefigures(varargi​n)

Versione 1.1.0.0 (6,8 KB) da Toby
Save Figures
143 download
Aggiornato 28 set 2017

Visualizza la licenza

% Saves all open figures (or those specified by input figureHandles) to specified output image type.
% Output filename is based on current axes title for each figure.
%
% syntax:
% savefigures(figureHandles, outputDirectory)
%
% where:
% figureHandles (optional) - figure handle or array of figure handles to save
% defaults to all current figures if no argument or
% empty argument ([],{},etc)
% outputDirectory (optional) - directory to place figures in
% defaults to uigetdir dialog (if no argument) or current
% directory (if argument is empty - [],'',etc)
%
% additional input parameters are available:
% 'outputFormat' - image formats used with the print function; defaults to '-dpng'
% 'orientation' - 'Portrait' or 'Landscape'; defaults to 'Portrait'
% 'paperType' - standard page sizes; defaults to 'usletter'
% 'margin' - margin to use when saving images (units correspond to paperType); defaults to 0.5
% 'saveFigFlag' - logical flag to save .fig file in addition to printed image; defaults to false
%
% these parameters are set by:
% savefigures(figureHandles,outputDirectory,'parameter','value')
%

Cita come

Toby (2024). savefigures(varargin) (https://www.mathworks.com/matlabcentral/fileexchange/59061-savefigures-varargin), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2017a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Printing and Saving in Help Center e MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.1.0.0

Added more robust check for characters not allowed in saved filenames (based on figure titles).

1.0.0.0