已回答
Create a figure -exactly- a certain size
export_fig (or rather, print) appears to only export that part of the figure which is on screen. Make the figure small and use t...

12 years 前 | 0

| 已接受

已回答
Multiple “File Exchange” Animated GIF codes work for R2010a but not for R2011a
<http://www.mathworks.com/matlabcentral/fileexchange/32546-im2gif im2gif> works fine in R2012a

12 years 前 | 0

已回答
Text size in figure on the screen vs when saving as png
Try using <http://www.mathworks.com/matlabcentral/fileexchange/23629 export_fig> as follows: export_fig -painters -r200 t...

12 years 前 | 0

已回答
convert .fig to .jpg based on the ROI
<http://www.mathworks.com/matlabcentral/fileexchange/23629-exportfig Export_fig> automatically crops whitespace around figures b...

12 years 前 | 0

| 已接受

已回答
Clearing handle subclasses with timer objects
per isakson is right, but I'll add more info here: The anonymous function does save a reference to class object. This in itse...

12 years 前 | 3

提问


Clearing handle subclasses with timer objects
Save this class: classdef test_class < handle methods function this = test_class() fprintf('Hell...

12 years 前 | 2 个回答 | 0

2

个回答

已回答
export_fig Warning: RGB color data not yet supported in Painter's mode
I added a paragraph in this issue to the export_fig webpage: http://sites.google.com/site/oliverwoodford/software/export_fig ...

12 years 前 | 0

已回答
execution of external program fails
I suggest you use the ghostcript function that comes with export_fig. It uses a full path if it needs to, but sets it automatica...

12 years 前 | 0

已回答
Help with exporting pcolorm with shading interp
If possible, use <http://www.mathworks.com/matlabcentral/fileexchange/11368-uimage-uimagesc uimagesc> instead of pcolorm. It wil...

12 years 前 | 0

已回答
How to find the linear distance between two points say (x,y) and (m,n) on an image?
p1 = [x; y]; p2 = [m; n]; d = norm(p1 - p2);

13 years 前 | 3

已回答
Jpeg text rendering when saving.
Try <http://www.mathworks.com/matlabcentral/fileexchange/23629 export_fig> on the file exchange.

13 years 前 | 0

已回答
Copying and Pasting 3-D Plots
<http://www.mathworks.com/matlabcentral/answers/21962-export-figure-to-microsoft-outlook See this question>.

13 years 前 | 0

已回答
OpenGL and print
To get transparency in vector graphics output, export your figure to an <http://www.mathworks.com/matlabcentral/fileexchange/740...

13 years 前 | 0

已回答
Save a figure to PDF or EPS with non-standard fonts
The file exchange submission <http://www.mathworks.com/matlabcentral/fileexchange/23629 export_fig> now supports font correcting...

13 years 前 | 0

提问


Save a figure to PDF or EPS with non-standard fonts
If I generate a figure using some fancy fonts, for example like this: plot(rand(3)); set(gca, 'FontName', 'Georgia'); ...

13 years 前 | 5 个回答 | 6

5

个回答

已回答
Print specific figure in GUI
The <http://www.mathworks.com/matlabcentral/fileexchange/23629 export_fig> package contains a function called isolate_axes. You ...

13 years 前 | 2

已回答
Export figure to Microsoft Outlook
This code will copy a figure to the clipboard as an image: imclipboard('copy', export_fig()); Both <http://www.mathworks.com...

13 years 前 | 4

| 已接受

已回答
Transparent background for figures
You can edit the eps file generated by print, and remove the line which creates the background rectangle, thus making the backgr...

13 years 前 | 6

| 已接受

已回答
What is your favorite way to export figure for use in LaTeX?
I create the graph or image in a MATLAB figure on screen exactly as I want it to appear in the paper. Then I save the figure as ...

13 years 前 | 0

已回答
Multiple Figures to PDF's
<http://www.mathworks.com/matlabcentral/fileexchange/23629 Export_fig> has an -append option which you can use to save multiple ...

13 years 前 | 6

已回答
matlab cannot save my figure
Instead of saveas, use: hgsave(1, ['C:\users\lefou\desktop\back/' jd '/' Outputname '.fig'], '-v7.3'); From the documentatio...

13 years 前 | 1

| 已接受

已回答
Saving an image with no gui
Use print instead of saveas.

13 years 前 | 0

已回答
startup.m problem
Since you call startup_mtex from your startup file it adds mtex to the MATLAB path on startup. You therefore don't need to add i...

13 years 前 | 0

已回答
Line 129 in saveas function is slow!
If the question were instead "How can I make saveas faster?", I'd say - Change line 129 to: if ~isempty(format) && ~isem...

13 years 前 | 1

已回答
How to save a MATLAB graphic in a right size .pdf?
<http://www.mathworks.com/matlabcentral/fileexchange/23629 Export_fig> saves the figure at the dimensions it appears at on scree...

13 years 前 | 3

已回答
Printing Axes
With <http://www.mathworks.com/matlabcentral/fileexchange/23629-exportfig export_fig> you can specify a list of handles of the a...

13 years 前 | 2

| 已接受

已回答
[DISCONTINUED] Wish-list for MATLAB Answer sections.
Many questions get asked again and again. Why? Because people are not searching for previous answers before asking questions. ...

13 years 前 | 4

已回答
How to print a matrix as an uncompressed image file.
The function <http://www.mathworks.com/matlabcentral/fileexchange/16233-sc-powerful-image-rendering sc> was written to solve exa...

13 years 前 | 0

已回答
Multiple Colormaps, freezeColors won't work
Use <http://www.mathworks.com/matlabcentral/fileexchange/23342-real2rgb-colormaps real2rgb> to convert your data matrices to ima...

13 years 前 | 1

| 已接受

已回答
keep figures from popping up when running.
This question has been <http://www.mathworks.com/matlabcentral/answers/5781-how-can-i-render-and-export-many-figures-without-the...

13 years 前 | 1

加载更多