displayScalarObject
Class: matlab.mixin.CustomDisplay
Package: matlab.mixin
Display format for scalar objects
Syntax
displayScalarObject(obj)
Description
displayScalarObject(
is called by the obj
)disp
method when the object, obj
, is scalar (prod(size(obj)) == 1
).
The default display of a scalar object consists of a header and a list of properties and their values. Properties are shown in the order they are defined in the class definition. displayScalarObject
shows only those properties with public GetAccess
and Hidden
set to false
.
Override this method to customize the display of a scalar object.
Input Arguments
|
Object of a class derived from |