/
Plotting
Plotting
Transparent markers
http://undocumentedmatlab.com/blog/plot-markers-transparency-and-color-gradient
Example with ~500,000 points
>> figure, l = plot(x,y,'.')
>> l.MarkerHandle.EdgeColorData(4) = 10
to
You'll need to add a listener to change the transparency when the figure is resized, see comments in above thread.
Printing
export_fig is good for most figures. However, it does not do transparency.
Here is a way to copy to the clipboard a figure with transparency.:
set(gcf,'InvertHardCopy','off'),print -clipboard -dbitmap -r72
This may be helpfuul, haven't tested it:
http://undocumentedmatlab.com/blog/screencapture-utility
, multiple selections available,
Related content
MATLAB Exporting Transparent Patches
MATLAB Exporting Transparent Patches
More like this
Extract data from plot
Extract data from plot
More like this
Make image from Excel
Make image from Excel
More like this
MRIcroGL
MRIcroGL
More like this
Data Display with Extended Display Options
Data Display with Extended Display Options
More like this
mricron installation
mricron installation
More like this