H = gobjects(n) returns
an n-by-n graphics object
array. Use the gobjects function instead of the ones or zeros functions
to preallocate an array to store graphics objects.
H = gobjects(s1,...,sn) returns
an s1-by-...-by-sn graphics
object array, where the list of integers s1,...,sn defines
the dimensions of the array. For example, gobjects(2,3) returns
a 2-by-3 array.
H = gobjects(v) returns
a graphics object array where the elements of the row vector, v,
define the dimensions of the array. For example, gobjects([2,3,4]) returns
a 2-by-3-by-4 array.
H = gobjects returns
a 1-by-1 graphics object array.