Publication Quality Plots
Saving an image from a MATLAB plot causes a number of problems. Fonts are too small, lots of whitespace,low image quality etc.
This addresses all these issues.
after using plot (X,Y), simply call plotpub(h,xl,yl) from the main function.
Required Inputs:
h-figure handle,
xl,yl-x and y axis labels,
Additionally, you can specify the following optional input arguments:
file: output file name
w_inch: Width of the image in inches.
dpi: desired image resolution (determines the size of the file. There is always a tradeoff between file size and resolution)
life_size: if you need to adjust the magnification at which you display the figure in the document/presentation.
Simple implementation:
x=1:10;
y=2*x;
h=figure;
plot(x,y);
xl='my x-axis';
yl='my y-axis';
plotpub(h,xl,yl);
if you don't specify a filename, it will save a file called 'plotpic.tiff' in the current working directory.
For a fuller implementation, see the mfile sampleplot.m in the zipped folder.
Cite As
Sourav Chatterjee (2023). Publication Quality Plots (https://www.mathworks.com/matlabcentral/fileexchange/31668-publication-quality-plots), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
- Image Processing and Computer Vision > Image Processing Toolbox > Image Segmentation and Analysis > Image Quality >
Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
Version | Published | Release Notes | |
---|---|---|---|
1.0.0.0 |