copygraphics
Copy plot to clipboard.
📝Syntax
copygraphics(fig)
📥Input Arguments
Parameter Description
fig figure object.
📄Description

copygraphics copy figure to clipboard.

💡Examples
x = -2:0.25:2;
y = x;
[X,Y] = meshgrid(x);
F = X.*exp(-X.^2-Y.^2);
surf(X,Y,F);
copygraphics(gcf());
🔗See Also
gcfsaveas
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub