displayScalarObject

Class: matlab.mixin.CustomDisplay
Package: matlab.mixin

Display format for scalar objects

Syntax

displayScalarObject(obj)

Description

displayScalarObject(obj) is called by the 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

obj

Object of a class derived from matlab.mixin.CustomDisplay

Attributes

Accessprotected

To learn about attributes of methods, see Method Attributes.