Main Content

Preallocate Arrays of Graphics Objects

Use thegobjectsfunction to preallocate arrays for graphics objects. You can fill in each element in the array with a graphics object handle.

Preallocate a 4-by-1 array:

h = gobjects(4,1);

Assign axes handles to the array elements:

tiledlayout(2,2)fork=1:4 h(k) = nexttile;end

gobjects返回一个GraphicsPlaceholderarray. You can replace these placeholders elements with any type of graphics object. You must usegobjectsto preallocate graphics object arrays to ensure compatibility among all graphics objects that are assigned to the array.