cla
Clear axes.
📝Syntax
cla
cla(ax)
ca = cla(...)
📥Input Arguments
Parameter Description
ax a scalar graphics object on an existing axes.
📤Output Arguments
Parameter Description
ca a graphics object: used axes graphics object.
📄Description

cla clears the current axes.

💡Examples
f = figure();
x = linspace(0, 2*pi);
y = sin(3 * x);
plot(x, y)
sleep(5)
cla
🔗See Also
gcaclf
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub