<< CL_deg2sdms Utilities CL_g_legend >>

CelestLab >> Utilities > CL_g_delete

CL_g_delete

Deletes graphic entities

Calling Sequence

CL_g_delete(h)

Description

Parameters

h:

Vector of graphic entities (1xN).

Authors

Examples

f=scf();
a=gca();
x = 0:0.1:5;
y = x;
plot2d(x, y);
h = CL_g_select(a, "Polyline");
CL_g_delete(h); // deletes the curve
h = CL_g_select(a, "Text");
CL_g_delete(h); // does nothing

Report an issue
<< CL_deg2sdms Utilities CL_g_legend >>