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
Writing on screen - ZoomIt, EpicPen
Writing on screen - ZoomIt, EpicPen
More like this
Additional resources
Additional resources
More like this
09 ECG
09 ECG
More like this
uialert - make wait
uialert - make wait
More like this
AD: MP3 Conversion of Raw Data
AD: MP3 Conversion of Raw Data
More like this
AD: File/Folder Setup and Preparation for Preprocessing
AD: File/Folder Setup and Preparation for Preprocessing
More like this