displayNonScalarObject
Class: matlab.mixin.CustomDisplay
Package: matlab.mixin
Display format for non-scalar objects
Syntax
displayNonScalarObject(obj)
Description
displayNonScalarObject(
is called by the obj
)disp
method when the object, obj
, is nonscalar (prod(size(obj)) > 1
)
The default display of a nonscalar object array consists of a header and a list of property names. The header consists of the object's dimensions and the properties are shown in the order defined in the class definition. displayNonScalarObject
shows only those properties with public GetAccess
and Hidden
set to false
.
Override this method to customize the display a nonscalar object array.
Input Arguments
|
Object array of a class derived from |