Main Content

displayScalarObject

Class: matlab.mixin.CustomDisplay
Namespace: 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.

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

expand all

Scalar object to display. The class of obj must be derived from matlab.mixin.CustomDisplay.

Attributes

Accessprotected

To learn about attributes of methods, see Method Attributes.

Examples

See Customize Display of Scalar Objects for a sample implementation of displayScalarObject.

Version History

Introduced in R2013b