Matlab Object Oriented Programming
Matlab Object Oriented Programming
Matlab Object Oriented Programming
Object-Oriented Programming
R2019a
How to Contact MathWorks
Phone: 508-647-7000
Basic Example
2
Create a Simple Class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-2
Design Class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-2
Create Object . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-3
Access Properties . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-3
Call Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-4
Add Constructor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-4
Vectorize Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-5
Overload Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-6
BasicClass Code Listing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-7
v
MATLAB Classes Overview
3
Role of Classes in MATLAB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3-2
Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3-2
Some Basic Relationships . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3-4
vi Contents
Static Data
4
Static Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4-2
What Is Static Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4-2
Static Variable . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4-2
Static Data Object . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4-3
Constant Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4-5
Properties . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5-12
The Properties Block . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5-12
Access to Property Values . . . . . . . . . . . . . . . . . . . . . . . . . . . 5-13
vii
Methods and Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5-15
The Methods Block . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5-15
Method Calling Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5-15
Private Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5-17
More Detailed Information On Methods . . . . . . . . . . . . . . . . 5-17
Class-Related Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5-17
How to Overload Functions and Operators . . . . . . . . . . . . . . 5-18
Rules for Defining Methods in Separate Files . . . . . . . . . . . . 5-18
viii Contents
Functions to Query Class Components . . . . . . . . . . . . . . . . . 5-47
ix
Kinds of Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6-3
Constructing Objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6-3
Class Hierarchies . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6-3
classdef Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6-3
Class Code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6-4
x Contents
Clearing Import List . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6-31
xi
Find Handle Object Properties . . . . . . . . . . . . . . . . . . . . . . . 7-26
xii Contents
Property Access Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . 8-20
Reference Object Properties Using Variables . . . . . . . . . . . . 8-21
xiii
Property Get Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8-60
Overview of Property Access Methods . . . . . . . . . . . . . . . . . 8-60
Property Get Method Syntax . . . . . . . . . . . . . . . . . . . . . . . . . 8-60
Calculate Value for Dependent Property . . . . . . . . . . . . . . . . 8-60
Errors Not Returned from Get Method . . . . . . . . . . . . . . . . . 8-61
Get Method Behavior . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8-61
xiv Contents
Examples and Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9-2
Kinds of Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9-3
Method Naming . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9-4
xv
Why Define Static Methods . . . . . . . . . . . . . . . . . . . . . . . . . . 9-32
Defining Static Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9-32
Calling Static Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9-33
Inheriting Static Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . 9-33
Object Arrays
10
Construct Object Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10-2
Build Arrays in the Constructor . . . . . . . . . . . . . . . . . . . . . . 10-2
Referencing Property Values in Object Arrays . . . . . . . . . . . . 10-3
xvi Contents
Empty Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10-8
Creating Empty Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10-8
Assigning Values to an Empty Array . . . . . . . . . . . . . . . . . . . 10-8
xvii
Events — Sending and Responding to Messages
11
Overview Events and Listeners . . . . . . . . . . . . . . . . . . . . . . . . . 11-2
Why Use Events and Listeners . . . . . . . . . . . . . . . . . . . . . . . 11-2
Events and Listeners Basics . . . . . . . . . . . . . . . . . . . . . . . . . 11-2
Events and Listeners Syntax . . . . . . . . . . . . . . . . . . . . . . . . . 11-3
Create Listener . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11-4
xviii Contents
Listener Callback Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11-30
Specifying Listener Callbacks . . . . . . . . . . . . . . . . . . . . . . . 11-30
Input Arguments for Callback Function . . . . . . . . . . . . . . . 11-30
Additional Arguments for Callback Function . . . . . . . . . . . . 11-31
xix
How to Build on Other Classes
12
Hierarchies of Classes — Concepts . . . . . . . . . . . . . . . . . . . . . 12-2
Classification . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12-2
Develop the Abstraction . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12-3
Design of Class Hierarchies . . . . . . . . . . . . . . . . . . . . . . . . . 12-4
Super and Subclass Behavior . . . . . . . . . . . . . . . . . . . . . . . . 12-4
Implementation and Interface Inheritance . . . . . . . . . . . . . . 12-5
xx Contents
Class Members Access . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12-28
Basic Knowledge . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12-28
Applications for Access Control Lists . . . . . . . . . . . . . . . . . 12-29
Specify Access to Class Members . . . . . . . . . . . . . . . . . . . . 12-29
Properties with Access Lists . . . . . . . . . . . . . . . . . . . . . . . . 12-31
Methods with Access Lists . . . . . . . . . . . . . . . . . . . . . . . . . 12-31
Abstract Methods with Access Lists . . . . . . . . . . . . . . . . . . 12-35
xxi
Built-In Data Value Methods . . . . . . . . . . . . . . . . . . . . . . . . 12-55
Built-In Data Organization Methods . . . . . . . . . . . . . . . . . . 12-56
Built-In Indexing Methods . . . . . . . . . . . . . . . . . . . . . . . . . 12-57
Built-In Concatenation Methods . . . . . . . . . . . . . . . . . . . . . 12-57
xxii Contents
Determine If a Class Is Abstract . . . . . . . . . . . . . . . . . . . . . 12-93
Find Inherited Abstract Properties and Methods . . . . . . . . . 12-94
xxiii
Additional Considerations . . . . . . . . . . . . . . . . . . . . . . . . . . 13-17
Enumerations
14
Named Values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14-2
Kinds of Predefined Names . . . . . . . . . . . . . . . . . . . . . . . . . . 14-2
Techniques for Defining Enumerations . . . . . . . . . . . . . . . . . 14-3
xxiv Contents
Refer to Enumerations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14-11
Instances of Enumeration Classes . . . . . . . . . . . . . . . . . . . . 14-11
Conversion of Characters to Enumerations . . . . . . . . . . . . . 14-13
Enumeration Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14-15
xxv
Save and Load Enumerations . . . . . . . . . . . . . . . . . . . . . . . . . 14-45
Basic Knowledge . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14-45
Built-In and Value-Based Enumeration Classes . . . . . . . . . . 14-45
Simple and Handle-Based Enumeration Classes . . . . . . . . . 14-45
Causes: Load as struct Instead of Object . . . . . . . . . . . . . . . 14-46
Constant Properties
15
Define Class Properties with Constant Values . . . . . . . . . . . . . 15-2
Defining Named Constants . . . . . . . . . . . . . . . . . . . . . . . . . . 15-2
Constant Property Assigned a Handle Object . . . . . . . . . . . . 15-4
Constant Property Assigned Any Object . . . . . . . . . . . . . . . . 15-4
Constant Properties — No Support for Get Events . . . . . . . . 15-6
xxvi Contents
Find Default Values in Property Metadata . . . . . . . . . . . . . . 16-20
Default Values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16-20
meta.property Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16-20
xxvii
Values of the Indexing Structure . . . . . . . . . . . . . . . . . . . . . 17-23
Typical Patterns for Indexing Methods . . . . . . . . . . . . . . . . 17-23
xxviii Contents
CustomDisplay Class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18-3
Methods for Customizing Object Display . . . . . . . . . . . . . . . . 18-3
xxix
Customize Display of Object Arrays . . . . . . . . . . . . . . . . . . . . 18-37
Objective . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18-37
Design of Custom Display . . . . . . . . . . . . . . . . . . . . . . . . . . 18-37
The displayNonScalarObject Override . . . . . . . . . . . . . . . . 18-38
The displayEmptyObject Override . . . . . . . . . . . . . . . . . . . . 18-39
xxx Contents
Operating on an Assets Array . . . . . . . . . . . . . . . . . . . . . . . 20-14
xxxi
1
In this section...
“Approaches to Writing MATLAB Programs” on page 1-2
“When Should You Create Object-Oriented Programs” on page 1-3
The MATLAB language enables you to create programs using both procedural and object-
oriented techniques and to use objects and ordinary functions together in your programs.
In procedural programming, your design focuses on the steps that must execute to
achieve a desired state. Typically, you represent data as individual variables or fields of a
structure. You implement operations as functions that take the variables as arguments.
Programs usually call a sequence of functions, each one of which is passed data, and then
returns modified data. Each function performs an operation or many operations on the
data.
• Identifying the components of the system or application that you want to build
• Analyzing and identifying patterns to determine what components are used repeatedly
or share characteristics
• Classifying components based on similarities and differences
After performing this analysis, you define classes that describe the objects your
application uses.
1-2
Why Use Object-Oriented Design
A class describes a set of objects with common characteristics. Objects are specific
instances of a class. The values contained in an object's properties are what make an
object different from other objects of the same class. The functions defined by the class
(called methods) are what implement object behaviors that are common to all objects of a
class.
As functions become too large, you can break them into smaller functions and pass data
from one to function to another. However, as the number of functions becomes large,
designing, and managing the data passed to functions becomes difficult and error prone.
At this point, consider moving your MATLAB programming tasks to object-oriented
designs.
Thinking in terms of objects is simpler and more natural for some problems. Think of the
nouns in your problem statement as the objects to define and the verbs as the operations
to perform.
Consider the design of classes to represent money lending institutions (banks, mortgage
companies, individual money lenders, and so on). It is difficult to represent the various
types of lenders as procedures. However, you can represent each one as an object that
performs certain actions and contains certain data. The process of designing the objects
involves identifying the characteristics of a lender that are important to your application.
Identify Commonalities
What do all money lenders have in common? All MoneyLender objects can have a loan
method and an InterestRate property, for example.
Identify Differences
How does each money lender differ? One can provide loans to businesses while another
provides loans only to individuals. Therefore, the loan operation might need to be
different for different types of lending institutions. Subclasses of a base MoneyLender
1-3
1 Using Object-Oriented Design in MATLAB
class can specialize the subclass versions of the loan method. Each lender can have a
different value for its InterestRate property.
Factor out commonalities into a superclass and implement what is specific to each type of
lender in the subclass.
Add Only What Is Necessary
These institutions might engage in activities that are not of interest to your application.
During the design phase, determine what operations and data an object must contain
based on your problem definition.
Objects provide several useful features not available from structures and cell arrays. For
example, objects can:
Reducing Redundancy
You can implement this procedure as an ordinary function. But suppose that you use this
procedure again somewhere in your application, except that step 2 must perform a
different computation. You could copy and paste the first implementation, and then
rewrite step 2. Or you could create a function that accepted an option indicating which
computation to make, and so on. However, these options lead to more complicated code.
An object-oriented design can factor out the common code into what is called a base
class. The base class would define the algorithm used and implement whatever is common
1-4
Why Use Object-Oriented Design
to all cases that use this code. Step 2 could be defined syntactically, but not implemented,
leaving the specialized implementation to the classes that you then derive from this base
class.
Step 1
function checkInputs()
% actual implementation
end
Step 2
function results = computeOnFirstArg()
% specify syntax only
end
Step 3
function transformResults()
% actual implementation
end
Step 4
function out = checkOutputs()
% actual implementation
end
The code in the base class is not copied or modified. Classes you derive from the base
class inherit this code. Inheritance reduces the amount of code to be tested, and isolates
your program from changes to the basic procedure.
The use of a class as the basis for similar, but more specialized classes is a useful
technique in object-oriented programming. This class defines a common interface.
Incorporating this kind of class into your program design enables you to:
Reducing Complexity
Objects reduce complexity by reducing what you must know to use a component or
system:
1-5
1 Using Object-Oriented Design in MATLAB
n1 n2 n3
Properties Properties Properties
Next Next Next
Prev Prev Prev
n2.Prev n2 n2.Next
To add a node to the list, disconnect the existing nodes in the list, insert the new node,
and reconnect the nodes appropriately. Here are the basic steps:
Now create the new node, connect it, and renumber the original nodes:
1 Link new.Prev to n1
2 Link new.Next to n3 (was n2)
3 Link n1.Next to new (will be n2)
4 Link n3.Prev to new (will be n2)
n1 n2 n3 n4
Properties Properties Properties Properties
Next Next Next Next
Prev Prev Prev Prev
1-6
Why Use Object-Oriented Design
The details of how methods perform these steps are encapsulated in the class design.
Each node object contains the functionality to insert itself into or remove itself from the
list.
For example, in this class, every node object has an insertAfter method. To add a node
to a list, create the node object and then call its insertAfter method:
nnew = NodeConstructor;
nnew.insertAfter(n1)
Because the node class defines the code that implements these operations, this code is:
The object methods enforce the rules for how the nodes interact. This design removes the
responsibility for enforcing rules from the applications that use the objects. It also means
that the application is less likely to generate errors in its own implementation of the
process.
Fostering Modularity
As you decompose a system into objects (car –> engine –> fuel system –> oxygen sensor),
you form modules around natural boundaries. Classes provide three levels of control over
code modularity:
• Public — Any code can access this particular property or call this method.
• Protected — Only this object's methods and methods of the object's derived from this
object's class can access this property or call this method.
• Private — Only the object's own methods can access this property or call this method.
When you define a class, you can overload existing MATLAB functions to work with your
new object. For example, the MATLAB serial port class overloads the fread function to
read data from the device connected to the port represented by this object. You can define
various operations, such as equality (eq) or addition (plus), for a class you have defined
to represent your data.
1-7
1 Using Object-Oriented Design in MATLAB
See Also
More About
• “Role of Classes in MATLAB” on page 3-2
1-8
Handle Object Behavior
More than one variable can refer to the same handle object. Therefore, users interact
with instances of handle classes differently than instances of value classes.
Understanding how handle objects behave can help you determine whether to implement
a handle or a value class. This topic illustrates some of those interactions.
What Is a Handle?
Certain kinds of MATLAB objects are handles. When a variable holds a handle, it actually
holds a reference to the object.
Handle objects enable more than one variable to refer to the same object. Handle-object
behavior affects what happens when you copy handle objects and when you pass them to
functions.
Copies of Handles
All copies of a handle object variable refer to the same underlying object. This reference
behavior means that if h identifies a handle object, then,
h2 = h;
For example, the MATLAB audioplayer function creates a handle object that contains
the audio source data to reproduce a specific sound segment. The variable returned by
the audioplayer function identifies the audio data and enables you to access object
functions to play the audio.
1-9
1 Using Object-Oriented Design in MATLAB
MATLAB software includes audio data that you can load and use to create an
audioplayer object. This sample load audio data, creates the audio player, and plays the
audio:
load gong Fs y
gongSound = audioplayer(y,Fs);
play(gongSound)
Suppose that you copy the gongSound object handle to another variable (gongSound2):
gongSound2 = gongSound;
The variables gongSound and gongSound2 are copies of the same handle and, therefore,
refer to the same audio source. Access the audioplayer information using either
variable.
For example, set the sample rate for the gong audio source by assigning a new value to
the SampleRate property. First get the current sample rate and then set a new sample
rate:
sr = gongSound.SampleRate;
disp(sr)
8192
gongSound.SampleRate = sr*2;
disp(gongSound2.SampleRate)
16384
play(gongSound2)
1-10
Handle Object Behavior
Passing a nonhandle variable to a function does not affect the original variable that is in
the caller’s workspace. For example, myFunc modifies a local variable called var, but
when the function ends, the local variable var no longer exists:
function myFunc(var)
var = var + 1;
end
x = 12;
myFunc(x)
disp(x)
12
The myFunc function can return the modified value, which you could assign to the same
variable name (x) or another variable.
x = 12;
x = myFunc(x);
disp(x)
13
When the argument is a handle variable, the function copies only the handle, not the
object identified by that handle. Both handles (original and local copy) refer to the same
object.
When the function modifies the data referred to by the object handle, those changes are
accessible from the handle variable in the calling workspace without the need to return
the modified object.
For example, the modifySampleRate function changes the audioplayer sample rate:
1-11
1 Using Object-Oriented Design in MATLAB
function modifySampleRate(audioObj,sr)
audioObj.SampleRate = sr;
end
8192
modifySampleRate(gongSound,16384)
disp(gongSound.SampleRate)
16384
The modifySampleRate function does not need to return a modified gongSound object
because audioplayer objects are handle objects.
1-12
Handle Object Behavior
load gong Fs y
gongSound = audioplayer(y,Fs);
The output argument, gongSound, is a handle variable. Calling delete deletes the object
along with the audio source information it contains:
delete(gongSound)
Fs 1x1 8 double
gongSound 1x1 0 audioplayer
y 42028x1 336224 double
Note The value for Bytes returned by the whos command does not include the data
referenced by a handle because many variables can reference the same data.
The handle gongSound no longer refers to a valid object, as shown by the isvalid
handle method:
isvalid(gongSound)
ans =
logical
Calling delete on a deleted handle does nothing and does not cause an error. You can
pass an array containing both valid and invalid handles to delete. MATLAB deletes the
valid handles, but does not issue an error when encountering handles that are already
invalid.
1-13
1 Using Object-Oriented Design in MATLAB
gongSound.SampleRate
play(gongSound)
clear gongSound
whos
Fs 1x1 8 double
y 42028x1 336224 double
See Also
More About
• “Handle Class Destructor” on page 7-16
• “Comparison of Handle and Value Classes” on page 7-2
1-14
2
Basic Example
2 Basic Example
Design Class
The basic purpose of a class is to define an object that encapsulates data and the
operations performed on that data. For example, BasicClass defines a property and two
methods that operate on the data in that property:
• Value — Property that contains the data stored in an object of the class
• roundOff — Method that rounds the value of the property to two decimal places
• multiplyBy — Method that multiplies the value of the property by the specified
number
2-2
Create a Simple Class
• Save the class definition in a .m file with the same name as the class.
• Create an object of the class.
• Access the properties to assign data.
• Call methods to perform operation on the data.
Create Object
Create an object of the class using the class name:
a = BasicClass
a =
Value: []
Access Properties
Assign a value to the Value property using the object variable and a dot before the
property name:
a.Value = pi/3;
a.Value
ans =
1.0472
2-3
2 Basic Example
Call Methods
Call the roundOff method on object a:
roundOff(a)
ans =
1.0500
Pass the object as the first argument to a method that takes multiple arguments:
multiplyBy(a,3)
ans =
3.1416
It is not necessary to pass the object explicitly as an argument when using dot notation.
The notation uses the object to the left of the method name.
For information on class methods, see “Methods and Functions” on page 5-15
Add Constructor
Classes can define a special method to create objects, called a constructor. Constructor
methods enable you to pass arguments to the constructor, and to validate and assign
property values. Here is a constructor for the BasicClass class:
methods
function obj = BasicClass(val)
if nargin > 0
if isnumeric(val)
obj.Value = val;
else
error('Value must be numeric')
end
end
end
end
2-4
Create a Simple Class
By adding this constructor to the class definition, you can create an object in one step:
a = BasicClass(pi/3)
a =
Value: 1.0472
This constructor also performs type checking on the input argument. For example:
a = BasicClass('A character array')
Vectorize Methods
MATLAB enables you to vectorize operations. For example, you can add a number to a
vector:
[1 2 3] + 2
ans =
3 4 5
MATLAB adds the number 2 to each of the elements in the array [1 2 3]. To vectorize
the arithmetic operator methods, enclose the obj.Value property reference in brackets,
where obj is an object array.
[obj.Value] + 2
This syntax enables the method to work with arrays of object. For example, given objects
a1, a2, and a3:
[a1.Value,a2.Value,a3.Value] + 2
2-5
2 Basic Example
a(3) = BasicClass(7);
roundOff(a)
ans =
Overload Functions
Classes can implement existing functionality, such as addition, by defining a method with
the same name as the existing MATLAB function. For example, suppose that you want to
add two BasicClass objects. It makes sense to add the values of the ObjectValue
properties of each object.
Here is an overload of the MATLAB plus function. It defines addition for this class as
adding the property values:
method
function r = plus(o1,o2)
r = [o1.Value] + [o2.Value];
end
end
By implementing a method called plus, you can use the “+” operator with objects of
BasicClass.
a = BasicClass(pi/3);
b = BasicClass(pi/4);
a + b
ans =
1.8326
Related Information
2-6
See Also
classdef BasicClass
properties
Value
end
methods
function obj = BasicClass(val)
if nargin == 1
if isnumeric(val)
obj.Value = val;
else
error('Value must be numeric')
end
end
end
function r = roundOff(obj)
r = round([obj.Value],2);
end
function r = multiplyBy(obj,n)
r = [obj.Value] * n;
end
function r = plus(o1,o2)
r = o1.Value + o2.Value;
end
end
end
See Also
Related Examples
• “Class Syntax Guide”
2-7
3
Classes
In the MATLAB language, every value is assigned to a class. For example, creating a
variable with an assignment statement constructs a variable of the appropriate class:
a = 7;
b = 'some text';
s.Name = 'Nancy';
s.Age = 64;
whos
whos
Name Size Bytes Class Attributes
a 1x1 8 double
b 1x9 18 char
s 1x1 370 struct
Basic commands like whos display the class of each value in the workspace. This
information helps MATLAB users recognize that some values are characters and display
as text while other values are double precision numbers, and so on. Some variables can
contain different classes of values like structures.
Predefined Classes
MATLAB defines fundamental classes that comprise the basic types used by the language.
These classes include numeric, logical, char, cell, struct, and function handle.
User-Defined Classes
You can create your own MATLAB classes. For example, you could define a class to
represent polynomials. This class could define the operations typically associated with
MATLAB classes, like addition, subtraction, indexing, displaying in the command window,
and so on. These operations would need to perform the equivalent of polynomial addition,
polynomial subtraction, and so on. For example, when you add two polynomial objects:
3-2
Role of Classes in MATLAB
p1 + p2
the plus operation must be able to add polynomial objects because the polynomial class
defines this operation.
When you define a class, you can overload special MATLAB functions (such as plus.m for
the addition operator). MATLAB calls these methods when users apply those operations to
objects of your class.
See “Representing Polynomials with Classes” on page 19-2 for an example that creates
just such a class.
MATLAB classes use the following words to describe different parts of a class definition
and related concepts.
3-3
3 MATLAB Classes Overview
Classes
A class is a definition that specifies certain characteristics that all instances of the class
share. These characteristics are determined by the properties, methods, and events that
define the class and the values of attributes that modify the behavior of each of these
class components. Class definitions describe how objects of the class are created and
destroyed, what data the objects contain, and how you can manipulate this data.
Class Hierarchies
It sometimes makes sense to define a new class in terms of existing classes. This
approach enables you to reuse the designs and techniques in a new class that represents
a similar entity. You accomplish this reuse by creating a subclass. A subclass defines
objects that are a subset of those objects defined by the superclass. A subclass is more
specific than its superclass and might add new properties, methods, and events to those
components inherited from the superclass.
Mathematical sets can help illustrate the relationships among classes. In the following
diagram, the set of Positive Integers is a subset of the set of Integers and a subset of
Positives. All three sets are subsets of Reals, which is a subset of All Numbers.
The definition of Positive Integers requires the additional specification that members of
the set be greater than zero. Positive Integers combine the definitions from both Integers
and Positives. The resulting subset is more specific, and therefore more narrowly defined,
than the supersets, but still shares all the characteristics that define the supersets.
3-4
Role of Classes in MATLAB
All
Numbers
Integers
Positive
Integers
Positives
Reals
If the “is a” relationship holds, then it is likely you can define a new class from a class or
classes that represent some more general case.
Reusing Solutions
Classes are usually organized into taxonomies to foster code reuse. For example, if you
define a class to implement an interface to the serial port of a computer, it would probably
be similar to a class designed to implement an interface to the parallel port. To reuse
code, you could define a superclass that contains everything that is common to the two
types of ports, and then derive subclasses from the superclass in which you implement
only what is unique to each specific port. Then the subclasses would inherit all the
common functionality from the superclass.
3-5
3 MATLAB Classes Overview
Objects
A class is like a template for the creation of a specific instance of the class. This instance
or object contains actual data for a particular entity that is represented by the class. For
example, an instance of a bank account class is an object that represents a specific bank
account, with an actual account number and an actual balance. This object has built into
it the ability to perform operations defined by the class, such as making deposits to and
withdrawals from the account balance.
Objects are not just passive data containers. Objects actively manage the data contained
by allowing only certain operations to be performed, by hiding data that does not need to
be public, and by preventing external clients from misusing data by performing
operations for which the object was not designed. Objects even control what happens
when they are destroyed.
Encapsulating Information
An important aspect of objects is that you can write software that accesses the
information stored in the object via its properties and methods without knowing anything
about how that information is stored, or even whether it is stored or calculated when
queried. The object isolates code that accesses the object from the internal
implementation of methods and properties. You can define classes that hide both data and
operations from any methods that are not part of the class. You can then implement
whatever interface is most appropriate for the intended use.
References
[1] Shalloway, A., J. R. Trott, Design Patterns Explained A New Perspective on Object-
Oriented Design.. Boston, MA: Addison-Wesley 2002.
[2] Gamma, E., R. Helm, R. Johnson, J. Vlissides, Design Patterns Elements of Reusable
Object-Oriented Software. Boston, MA: Addison-Wesley 1995.
[3] Freeman, E., Elisabeth Freeman, Kathy Sierra, Bert Bates, Head First Design
Patterns. Sebastopol, CA 2004.
3-6
See Also
See Also
Related Examples
• “Create a Simple Class” on page 2-2
• “Developing Classes — Typical Workflow” on page 3-8
• “Representing Structured Data with Classes” on page 3-19
• “Implementing Linked Lists with Classes” on page 3-31
3-7
3 MATLAB Classes Overview
Formulating a Class
This example discusses how to approach the design and implementation of a class. The
objective of this class is to represent a familiar concept (a bank account). However, you
can apply the same approach to most class designs.
To design a class that represents a bank account, first determine the elements of data and
the operations that form your abstraction of a bank account. For example, a bank account
has:
• An account number
• An account balance
• A status (open, closed, etc.)
If the balance is too low and you attempt to withdraw money, the bank account broadcasts
a notice. When this event occurs, the bank account broadcasts a notice to other entities
3-8
Developing Classes — Typical Workflow
that are designed to listen for these notices. In this example, a simplified version of an
account manager program performs this task.
In this example, an account manager program determines the status of all bank accounts.
This program monitors the account balance and assigns one of three values:
Class Data
The class defines these properties to store the account number, account balance, and the
account status:
3-9
3 MATLAB Classes Overview
Class Operations
Class Events
The account manager program changes the status of bank accounts that have negative
balances. To implement this action, the BankAccount class triggers an event when a
withdrawal results in a negative balance. Therefore, the triggering of the
InsufficientsFunds event occurs from within the withdraw method.
To define an event, specify a name within an events block. Trigger the event by a call to
the notify handle class method. Because InsufficientsFunds is not a predefined
event, you can name it with any char vector and trigger it with any action.
3-10
Developing Classes — Typical Workflow
AccountListener property is
transient so the listener handle is not
saved.
3-11
3 MATLAB Classes Overview
3-12
Developing Classes — Typical Workflow
End of classdef
3-13
3 MATLAB Classes Overview
end
newbal = BA.AccountBalance - amt;
BA.AccountBalance = newbal;
if newbal < 0
notify(BA,'InsufficientFunds')
end
end
function getStatement(BA)
disp('-------------------------')
disp(['Account: ',num2str(BA.AccountNumber)])
ab = sprintf('%0.2f',BA.AccountBalance);
disp(['CurrentBalance: ',ab])
disp(['Account Status: ',BA.AccountStatus])
disp('-------------------------')
end
end
methods (Static)
function obj = loadobj(s)
if isstruct(s)
accNum = s.AccountNumber;
initBal = s.AccountBalance;
obj = BankAccount(accNum,initBal);
else
obj.AccountListener = AccountManager.addAccount(s);
end
end
end
end
The AccountManager class stores no data so it does not need properties. The
BankAccount object stores the handle of the listener object.
Class Components
3-14
Developing Classes — Typical Workflow
• Extend the AccountManager class to support other types of accounts while keeping
the individual account classes simple and specialized.
• Change the criteria for the account status without affecting the compatibility of saved
and loaded BankAccount objects.
• Develop an Account superclass that factors out what is common to all accounts
without requiring each subclass to implement the account management functionality
3-15
3 MATLAB Classes Overview
classdef AccountManager
methods (Static)
function assignStatus(BA)
if BA.AccountBalance < 0
if BA.AccountBalance < -200
BA.AccountStatus = 'closed';
else
BA.AccountStatus = 'overdrawn';
end
end
end
function lh = addAccount(BA)
lh = addlistener(BA, 'InsufficientFunds', ...
@(src, ~)AccountManager.assignStatus(src));
end
end
end
3-16
Developing Classes — Typical Workflow
BA = BankAccount(1234567,500)
BA =
AccountNumber: 1234567
AccountBalance: 500
AccountListener: [1x1 event.listener]
getStatement(BA)
-------------------------
Account: 1234567
CurrentBalance: 500.00
Account Status: open
-------------------------
withdraw(BA,600)
getStatement(BA)
-------------------------
Account: 1234567
CurrentBalance: -100.00
Account Status: overdrawn
-------------------------
The $600 withdrawal triggered the InsufficientsFunds event. The current criteria
defined by the AccountManager class results in a status of overdrawn.
withdraw(BA,200)
getStatement(BA)
3-17
3 MATLAB Classes Overview
-------------------------
Account: 1234567
CurrentBalance: -300.00
Account Status: closed
-------------------------
Now the AccountStatus has been set to closed by the listener and further attempts to
make withdrawals are blocked without triggering the event:
withdraw(BA,100)
deposit(BA,700)
getStatement(BA)
-------------------------
Account: 1234567
CurrentBalance: 400.00
Account Status: open
-------------------------
3-18
Representing Structured Data with Classes
In this section...
“Objects as Data Structures” on page 3-19
“Structure of the Data” on page 3-19
“The TensileData Class” on page 3-20
“Create an Instance and Assign Data” on page 3-20
“Restrict Properties to Specific Values” on page 3-21
“Simplifying the Interface with a Constructor” on page 3-22
“Calculate Data on Demand” on page 3-23
“Displaying TensileData Objects” on page 3-24
“Method to Plot Stress vs. Strain” on page 3-25
“TensileData Class Synopsis” on page 3-26
For this example, the data represents tensile stress/strain measurements. These data are
used to calculate the elastic modulus of various materials. In simple terms, stress is the
force applied to a material and strain is the resulting deformation. Their ratio defines a
characteristic of the material. While this approach is an over simplification of the process,
it suffices for this example.
3-19
3 MATLAB Classes Overview
Data Description
Material char vector identifying the type of material tested
SampleNumber Number of a particular test sample
Stress Vector of numbers representing the stress applied to
the sample during the test.
Strain Vector of numbers representing the strain at the
corresponding values of the applied stress.
Modulus Number defining an elastic modulus of the material
under test, which is calculated from the stress and
strain data
The first version of the class provides only data storage. The class defines a property for
each of the required data elements.
classdef TensileData
properties
Material
SampleNumber
Stress
Strain
Modulus
end
end
td = TensileData;
td.Material = 'Carbon Steel';
td.SampleNumber = 001;
td.Stress = [2e4 4e4 6e4 8e4];
td.Strain = [.12 .20 .31 .40];
td.Modulus = mean(td.Stress./td.Strain);
3-20
Representing Structured Data with Classes
Treat the TensileData object (td in the previous statements) much as you would any
MATLAB structure. However, defining a specialized data structure as a class has
advantages over using a general-purpose data structure, like a MATLAB struct:
• Users cannot accidentally misspell a field name without getting an error. For example,
typing the following:
td.Modulis = ...
The Material property set method restricts the assignment of the property to one of the
following strings: aluminum, stainless steel, or carbon steel.
3-21
3 MATLAB Classes Overview
end
methods
function obj = set.Material(obj,material)
if (strcmpi(material,'aluminum') ||...
strcmpi(material,'stainless steel') ||...
strcmpi(material,'carbon steel'))
obj.Material = material;
else
error('Invalid Material')
end
end
end
end
When there is an attempt to set the Material property, MATLAB calls the
set.Material method before setting the property value.
If the value matches the acceptable values, the function set the property to that value.
The code within set method can access the property directly to avoid calling the property
set method recursively.
For example:
td = TensileData;
td.Material = 'brass';
methods
function td = TensileData(material,samplenum,stress,strain)
if nargin > 0
td.Material = material;
td.SampleNumber = samplenum;
3-22
Representing Structured Data with Classes
td.Stress = stress;
td.Strain = strain;
end
end
end
Create a TensileData object fully populated with data using the following statement:
td = TensileData('carbon steel',1,...
[2e4 4e4 6e4 8e4],...
[.12 .20 .31 .40]);
Calculating Modulus
TensileData objects do not store the value of the Modulus property. The constructor
does not have an input argument for the value of the Modulus property. The value of the
Modulus:
Therefore, it is better to calculate the value of the Modulus property only when its value
is requested. Use a property get access method to calculate the value of the Modulus.
The Modulus property depends on Stress and Strain, so its Dependent attribute is
true. Place the Modulus property in a separate properties block and set the
Dependent attribute.
The get.Modulus method calculates and returns the value of the Modulus property.
properties (Dependent)
Modulus
end
3-23
3 MATLAB Classes Overview
Define the property get method in a methods block using only default attributes.
methods
function modulus = get.Modulus(obj)
ind = find(obj.Strain > 0);
modulus = mean(obj.Stress(ind)./obj.Strain(ind));
end
end
This method calculates the average ratio of stress to strain data after eliminating zeros in
the denominator data.
MATLAB calls the get.Modulus method when the property is queried. For example,
td = TensileData('carbon steel',1,...
[2e4 4e4 6e4 8e4],...
[.12 .20 .31 .40]);
td.Modulus
ans =
1.9005e+005
To set the value of a Dependent property, the class must implement a property set
method. There is no need to allow explicit setting of the Modulus property. However, a
set method enables you to provide a customized error message. The Modulus set method
references the current property value and then returns an error:
methods
function obj = set.Modulus(obj,~)
fprintf('%s%d\n','Modulus is: ',obj.Modulus)
error('You cannot set the Modulus property');
end
end
The disp method displays the value of the Material, SampleNumber, and Modulus
properties. It does not display the Stress and Strain property data. These properties
contain raw data that is not easily viewed in the command window.
3-24
Representing Structured Data with Classes
The disp method uses fprintf to display formatted text in the command window:
methods
function disp(td)
fprintf(1,...
'Material: %s\nSample Number: %g\nModulus: %1.5g\n',...
td.Material,td.SampleNumber,td.Modulus);
end
end
The plot method creates a linear graph of the stress versus strain data and adds a title
and axis labels to produce a standardized graph for the tensile data records:
methods
function plot(td,varargin)
plot(td.Strain,td.Stress,varargin{:})
title(['Stress/Strain plot for Sample',...
num2str(td.SampleNumber)])
ylabel('Stress (psi)')
xlabel('Strain %')
end
end
The first argument to this method is a TensileData object, which contains the data.
The method passes a variable list of arguments (varargin) directly to the built-in plot
function. The TensileData plot method allows you to pass line specifier arguments or
property name-value pairs.
For example:
td = TensileData('carbon steel',1,...
[2e4 4e4 6e4 8e4],[.12 .20 .31 .40]);
plot(td,'-+b','LineWidth',2)
3-25
3 MATLAB Classes Overview
3-26
Representing Structured Data with Classes
3-27
3 MATLAB Classes Overview
3-28
Representing Structured Data with Classes
classdef TensileData
properties
Material
SampleNumber
Stress
Strain
end
properties (Dependent)
Modulus
end
methods
function td = TensileData(material,samplenum,stress,strain)
if nargin > 0
td.Material = material;
td.SampleNumber = samplenum;
td.Stress = stress;
td.Strain = strain;
end
end
function m = get.Modulus(obj)
ind = find(obj.Strain > 0);
m = mean(obj.Stress(ind)./obj.Strain(ind));
end
function disp(td)
3-29
3 MATLAB Classes Overview
function plot(td,varargin)
plot(td.Strain,td.Stress,varargin{:})
title(['Stress/Strain plot for Sample ',...
num2str(td.SampleNumber)])
xlabel('Strain %')
ylabel('Stress (psi)')
end
end
end
See Also
More About
• “Class Components” on page 5-5
3-30
Implementing Linked Lists with Classes
To use the class, create a folder named @dlnode and save dlnode.m to this folder. The
parent folder of @dlnode must be on the MATLAB path. Alternatively, save dlnode.m to
a path folder.
• Data array
• Handle to the next node
• Handle to the previous node
Class Properties
The dlnode class implements each node as a handle object with three properties:
3-31
3 MATLAB Classes Overview
This diagram shows a list with three-nodes n1, n2, and n3. It also shows how the nodes
reference the next and previous nodes.
n1 n2 n3
Properties Properties Properties
Next Next Next
Prev Prev Prev
n2.Prev n2 n2.Next
Class Methods
• dlnode — Construct a node and assign the value passed as an input to the Data
property
• insertAfter — Insert this node after the specified node
• insertBefore — Insert this node before the specified node
• removeNode — Remove this node from the list and reconnect the remaining nodes
• clearList — Remove large lists efficiently
• delete — Private method called by MATLAB when deleting the list.
n1 = dlnode(1);
n2 = dlnode(2);
n3 = dlnode(3);
Build these nodes into a doubly linked list using the class methods designed for this
purpose:
3-32
Implementing Linked Lists with Classes
n1.Next % Points to n2
ans =
Data: 2
Next: [1x1 dlnode]
Prev: [1x1 dlnode]
ans =
Data: 2
Next: [1x1 dlnode]
Prev: [1x1 dlnode]
n1.Next.Next % Points to n3
ans =
Data: 3
Next: []
Prev: [1x1 dlnode]
n3.Prev.Prev % Points to n1
ans =
Data: 1
Next: [1x1 dlnode]
Prev: []
3-33
3 MATLAB Classes Overview
For example, a node object, node, contains in its Next property the handle of the next
node object, node.Next. Similarly, the Prev property contains the handle of the previous
node, node.Prev. Using the three-node linked list defined in the previous section, you
can demonstrate that the following statements are true:
n1.Next == n2
n2.Prev == n1
x = n2;
x == n1.Next
x.Prev == n1
But each instance of a node is unique so there is only one node in the list that can satisfy
the conditions of being equal to n1.Next and having a Prev property that contains a
handle to n1. Therefore, x must point to the same node as n2.
There has to be a way for multiple variables to refer to the same object. The MATLAB
handle class provides a means for both x and n2 to refer to the same node.
The handle class defines the eq method (use methods('handle') to list the handle
class methods), which enables the use of the == operator with all handle objects.
Related Information
For more information on handle classes, see “Comparison of Handle and Value Classes”
on page 7-2.
3-34
Implementing Linked Lists with Classes
3-35
3 MATLAB Classes Overview
3-36
Implementing Linked Lists with Classes
methods
function node = dlnode(Data)
% Construct a dlnode object
if nargin > 0
node.Data = Data;
end
end
function removeNode(node)
3-37
3 MATLAB Classes Overview
function clearList(node)
% Clear the list before
% clearing list variable
prev = node.Prev;
next = node.Next;
removeNode(node)
while ~isempty(next)
node = next;
next = node.Next;
removeNode(node);
end
while ~isempty(prev)
node = prev;
prev = node.Prev;
removeNode(node)
end
end
end
3-38
Implementing Linked Lists with Classes
Class Properties
Only dlnode class methods can set the Next and Prev properties because these
properties have private set access (SetAccess = private). Using private set access
prevents client code from performing any incorrect operation with these properties. The
dlnode class methods perform all the operations that are allowed on these nodes.
The Data property has public set and get access, allowing you to query and modify the
value of Data as required.
To create a node object, specify the node's data as an argument to the constructor:
function node = dlnode(Data)
if nargin > 0
node.Data = Data;
end
end
Insert Nodes
There are two methods for inserting nodes into the list — insertAfter and
insertBefore. These methods perform similar operations, so this section describes only
insertAfter in detail.
function insertAfter(newNode, nodeBefore)
removeNode(newNode);
newNode.Next = nodeBefore.Next;
newNode.Prev = nodeBefore;
if ~isempty(nodeBefore.Next)
nodeBefore.Next.Prev = newNode;
end
nodeBefore.Next = newNode;
end
3-39
3 MATLAB Classes Overview
First, insertAfter calls the removeNode method to ensure that the new node is not
connected to any other nodes. Then, insertAfter assigns the newNode Next and Prev
properties to the handles of the nodes that are after and before the newNode location in
the list.
For example, suppose that you want to insert a new node, nnew, after an existing node,
n1, in a list containing n1—n2—n3.
nnew = dlnode(rand(3));
Next, call insertAfter to insert nnew into the list after n1:
nnew.insertAfter(n1)
The insertAfter method performs the following steps to insert nnew in the list between
n1 and n2:
nnew.Next = n1.Next;
• Set nnew.Prev to n1
nnew.Prev = n1;
• If n1.Next is not empty, then n1.Next is still n2, so n1.Next.Prev is n2.Prev,
which is set to nnew
n1.Next.Prev = nnew;
• n1.Next is now set to nnew
n1.Next = nnew;
3-40
Implementing Linked Lists with Classes
Remove a Node
The removeNode method removes a node from a list and reconnects the remaining
nodes. The insertBefore and insertAfter methods always call removeNode on the
node to insert before attempting to connect it to a linked list.
Calling removeNode ensures that the node is in a known state before assigning it to the
Next or Prev property:
function removeNode(node)
if ~isscalar(node)
error('Input must be scalar')
end
prevNode = node.Prev;
nextNode = node.Next;
if ~isempty(prevNode)
prevNode.Next = nextNode;
end
if ~isempty(nextNode)
nextNode.Prev = prevNode;
end
node.Next = dlnode.empty;
node.Prev = dlnode.empty;
end
For example, suppose that you remove n2 from a three-node list (n1–n2–n3):
n2.removeNode;
3-41
3 MATLAB Classes Overview
n1 n2 n3
Properties Properties Properties
Next Next Next
Prev Prev Prev
removeNode removes n2 from the list and reconnects the remaining nodes with the
following steps:
n1 = n2.Prev;
n3 = n2.Next;
if n1 exists, then
n1.Next = n3;
if n3 exists, then
n3.Prev = n1
The list is rejoined because n1 connects to n3 and n3 connects to n1. The final step is to
ensure that n2.Next and n2.Prev are both empty (that is, n2 is not connected):
n2.Next = dlnode.empty;
n2.Prev = dlnode.empty;
Suppose that you create a list with 10 nodes and save the handle to the head of the list:
head = dlnode(1);
for i = 10:-1:2
new = dlnode(i);
insertAfter(new,head);
end
Now remove the third node (Data property assigned the value 3):
removeNode(head.Next.Next)
3-42
Implementing Linked Lists with Classes
head.Next.Next
ans =
Data: 4
Next: [1x1 dlnode]
Prev: [1x1 dlnode]
head.Next
ans =
Data: 2
Next: [1x1 dlnode]
Prev: [1x1 dlnode]
Delete a Node
To delete a node, call the removeNode method on that node. The removeNode method
disconnects the node and reconnects the list before allowing MATLAB to destroy the
removed node. MATLAB destroys the node once references to it by other nodes are
removed and the list is reconnected.
3-43
3 MATLAB Classes Overview
n1 n2 n3
Properties Properties Properties
Next Next Next
Prev Prev Prev
>> removeNode(n2)
n2
Properties
Next
Prev
>> clear(n2)
MATLAB calls delete(n2)
When you create a linked list and assign a variable that contains, for example, the head or
tail of the list, clearing that variable causes the destructor to recurse through the entire
list. With large enough list, clearing the list variable can result in MATLAB exceeding its
recursion limit.
The clearList method avoids recursion and improves the performance of deleting large
lists by looping over the list and disconnecting each node. clearList accepts the handle
of any node in the list and removes the remaining nodes.
function clearList(node)
if ~isscalar(node)
error('Input must be scalar')
end
prev = node.Prev;
next = node.Next;
removeNode(node)
while ~isempty(next)
node = next;
next = node.Next;
3-44
Implementing Linked Lists with Classes
removeNode(node);
end
while ~isempty(prev)
node = prev;
prev = node.Prev;
removeNode(node)
end
end
For example, suppose that you create a list with many nodes:
head = dlnode(1);
for k = 100000:-1:2
nextNode = dlnode(k);
insertAfter(nextNode,head)
end
The variable head contains the handle to the node at the head of the list:
head
head =
Data: 1
Next: [1x1 dlnode]
Prev: []
head.Next
ans =
Data: 2
Next: [1x1 dlnode]
Prev: [1x1 dlnode]
clearList(head)
The only nodes that have not been deleted by MATLAB are those nodes for which there
exists an explicit reference. In this case, those references are head and nextNode:
3-45
3 MATLAB Classes Overview
head
head =
Data: 1
Next: []
Prev: []
nextNode
nextNode =
Data: 2
Next: []
Prev: []
The delete method has private access to prevent users from calling delete when
intending to delete a single node. MATLAB calls delete implicitly when the list is
destroyed.
To delete a single node from the list, use the removeNode method.
3-46
Implementing Linked Lists with Classes
Rather than copying the code used to implement the dlnode class, and then expanding
upon it, you can derive a new class from dlnode (that is, subclass dlnode). You can
create a class that has all the features of dlnode and also defines its own additional
features. And because dlnode is a handle class, this new class is a handle class too.
To use the class, create a folder named @NamedNode and save NamedNode.m to this
folder. The parent folder of @NamedNode must be on the MATLAB path. Alternatively, save
NamedNode.m to a path folder.
The following class definition shows how to derive the NamedNode class from the dlnode
class:
The NamedNode class adds a Name property to store the node name.
The constructor calls the class constructor for the dlnode class, and then assigns a value
to the Name property.
Use the NamedNode class like the dlnode class, except that you specify a name for each
node object. For example:
3-47
3 MATLAB Classes Overview
Now use the insert methods inherited from dlnode to build the list:
n(2).insertAfter(n(1))
n(3).insertAfter(n(2))
A single node displays its name and data when you query its properties:
n(1).Next
ans =
n(1).Next.Next
ans =
n(3).Prev.Prev
ans =
3-48
See Also
See Also
More About
• “The Handle Superclass” on page 7-13
3-49
4
Static Data
4 Static Data
Static Data
In this section...
“What Is Static Data” on page 4-2
“Static Variable” on page 4-2
“Static Data Object” on page 4-3
“Constant Data” on page 4-5
Use static data to define counters used by class instances or other data that is shared
among all objects of a class. Unlike instance data, static data does not vary from one
object to another. MATLAB provides several ways to define static data, depending on your
requirements.
Static Variable
Classes can use a persistent variable to store static data. Define a static method or local
function in which you create a persistent variable. The method or function provides
access to this variable. Use this technique when you want to store one or two variables.
Saving an object of the class defining the persistent variable does not save the static data
associated with the class. To save your static data in an object, or define more extensive
data, use the static data object technique “Static Data Object” on page 4-3
Implementation
The StoreData class defines a static method that declares a persistent variable Var. The
setgetVar method provides set and get access to the data in the persistent variable.
Because the setgetVar method has public access, you can set and get the data stored in
the persistent variable globally. Control the scope of access by setting the method Access
attribute.
classdef StoreData
methods (Static)
4-2
Static Data
Set the value of the variable by calling setgetVar with an input argument. The method
assigns the input value to the persistent variable:
StoreData.setgetVar(10);
Get the value of the variable by calling setgetVar with no input argument:
a = StoreData.setgetVar
a =
10
clear StoreData
a = StoreData.setgetVar
a =
[]
Add a method like setgetVar to any class in which you want the behavior of a static
property.
4-3
4 Static Data
Implementation
The SharedData class is a handle class, which enables you to reference the same object
data from multiple handle variables:
classdef SharedData < handle
properties
Data1
Data2
end
end
The UseData class is the stub of a class that uses the data stored in the SharedData
class. The UseData class stores the handle to a SharedData object in a constant
property.
classdef UseData
properties (Constant)
Data = SharedData
end
% Class code here
end
The Data property contains the handle of the SharedData object. MATLAB constructs
the SharedData object when loading the UseData class. All subsequently created
instances of the UseData class refer to the same SharedData object.
To initialize the SharedData object properties, load theUseData class by referencing the
constant property.
h = UseData.Data
h =
Data1: []
Data2: []
Use the handle to the SharedData object to assign data to property values:
h.Data1 = 'MyData1';
h.Data2 = 'MyData2';
Each instance of the UseData class refers to the same handle object:
4-4
See Also
a1 = UseData;
a2 = UseData;
ans =
MyData1
All new and existing objects of the UseData class share the same SharedData object. a2
now has the rand(3) data that was assigned to a1 in the previous step:
a2.Data.Data1
ans =
To reinitialize the constant property, clear all instances of the UseData class and then
clear the class:
clear a1 a2
clear UseData
Constant Data
To store constant values that do not change, assign the data to a constant property. All
instances of the class share the same value for that property. Control the scope of access
to constant properties by setting the property Access attribute.
The only way to change the value of a constant property is to change the class definition.
Use constant properties like public final static fields in Java®.
See Also
clear | persistent
4-5
4 Static Data
Related Examples
• “Define Class Properties with Constant Values” on page 15-2
• “Static Methods” on page 9-32
More About
• “Method Attributes” on page 9-5
• “Property Attributes” on page 8-9
• “Static Properties” on page 5-67
4-6
5
In this section...
“Class Definition Files” on page 5-2
“Options for Class Folders” on page 5-2
“Options for Class Files” on page 5-2
“Group Classes with Package Folders” on page 5-3
For information on the code that defines a class, see “Class Components” on page 5-5.
@MyClass
Class folders are not directly on the MATLAB path. The path folder that contains the class
folder is on the MATLAB path.
• Create a single, self-contained class definition file in a path folder or a class folder
• Define a class in multiple files, which requires you to use a class folder inside a path
folder
5-2
Class Files and Folders
Create a single, self-contained class definition file in a folder on the MATLAB® path. The
name of the file must match the class (and constructor) name and must have the .m
extension. Define the class entirely in this file. You can put other single-file classes in this
folder.
pathfolder
ClassNameA.m Contains classdef and methods for ClassNameA
ClassNameB.m Contains classdef and methods for ClassNameB
ClassNameC.m Contains classdef and methods for ClassNameC
...
ordinaryFunction.m A function on the path
If you use multiple files to define a class, put all the class-definition files (the file
containing the classdef and all class method files) in a single @ClassName folder. That
class folder must be inside a folder that is on the MATLAB path. You can define only one
class in a class folder.
pathfolder
@ClassNameA
ClassNameA.m Contains classdef
classMethod.m Class method in separate file
ClassNameB.m Contains entire class definition
A path folder can contain classes defined in both class folders and single files without a
class folder.
5-3
5 Class Definition—Syntax Reference
pathfolder
+packagefld1
@ClassNameA
ClassNameA.m Contains classdef
classMethod.m Class method in separate file
ClassNameB.m Contains entire class definition
+packagefld2 Defines a new name space
packageFunction.m
ClassNameA.m
ClassNameB.m
See Also
More About
• “Folders Containing Class Definitions” on page 6-17
• “Packages Create Namespaces” on page 6-25
• “Methods in Separate Files” on page 9-11
5-4
Class Components
Class Components
In this section...
“Class Building Blocks” on page 5-5
“Class Definition Block” on page 5-5
“Properties Block” on page 5-6
“Methods Block” on page 5-6
“Events Block” on page 5-7
“A Complete Class” on page 5-8
“Enumeration Classes” on page 5-8
“Related Information” on page 5-9
5-5
5 Class Definition—Syntax Reference
For example, this classdef defines a class called MyClass that subclasses the handle
class, but cannot be used to derive subclasses:
classdef (Sealed) MyClass < handle
...
end
Properties Block
The properties block (one for each unique set of attribute specifications) contains
property definitions, including optional initial values. The properties block starts with the
properties keyword and terminates with the end keyword.
classdef ClassName
properties (PropertyAttributes)
...
end
...
end
For example, this class defines a property called Prop1 that has private access and has a
default value equal to the output of the date function.
classdef MyClass
properties (SetAccess = private)
Prop1 = date
end
...
end
Methods Block
The methods block (one for each unique set of attribute specifications) contains function
definitions for the class methods. The methods block starts with the methods keyword
and terminates with the end keyword.
5-6
Class Components
classdef ClassName
methods (MethodAttributes)
...
end
...
end
For example:
classdef MyClass
methods (Access = private)
function obj = myMethod(obj)
...
end
end
end
Events Block
The events block (one for each unique set of attribute specifications) contains the names
of events that this class declares. The events block starts with the events keyword and
terminates with the end keyword.
classdef ClassName
events (EventAttributes)
EventName
end
...
end
For example, this class defined an event called StateChange with a ListenAccess set
to protected:
classdef EventSource
events (ListenAccess = protected)
StateChanged
end
...
end
5-7
5 Class Definition—Syntax Reference
A Complete Class
A complete class definition contains any combination of properties, methods, and events
code blocks.
Enumeration Classes
Enumeration classes are specialized classes that define a fixed set of names representing
a single type of value. Enumeration classes use an enumeration block that contains the
enumeration members defined by the class.
The enumeration block starts with the enumeration keyword and terminates with the
end keyword.
5-8
Class Components
For example, this class defines two enumeration members that represent logical false
and true:
Related Information
“Folders Containing Class Definitions” on page 6-17
5-9
5 Class Definition—Syntax Reference
Classdef Block
In this section...
“How to Specify Attributes and Superclasses” on page 5-10
“Class Attribute Syntax” on page 5-10
“Superclass Syntax” on page 5-11
“Local Functions in Class File” on page 5-11
• Class attributes
• Superclasses
The classdef block contains the properties, methods, and events subblocks.
For example, the TextString class specifies that it cannot be used to derive subclasses:
classdef TextString (Sealed)
...
end
5-10
See Also
See “Class Attributes” on page 6-6 for a list of attributes and a discussion of the
behaviors they control.
Superclass Syntax
Derive a class from one or more other classes by specifying the superclasses on the
classdef line:
For example, the LinkedList class inherits from classes called Array and handle:
classdef ClassName
...
end
function localFunction
...
end
See Also
Related Examples
• “User-Defined Classes” on page 6-2
• “Design Subclass Constructors” on page 12-9
• “Local Functions”
5-11
5 Class Definition—Syntax Reference
Properties
In this section...
“The Properties Block” on page 5-12
“Access to Property Values” on page 5-13
classdef ClassName
properties (PropertyAttributes)
PropertyName class = DefaultValue
end
end
Property attributes apply to all properties defined within the block. To define properties
with different attributes, use multiple properties block. All property attributes have
default values. For a list of property attributes, see “Property Attributes” on page 8-9.
Optionally assign default values to the property in the properties block. MATLAB
evaluates the assignment statement when the class is first referenced or when loading a
saved object.
Note Evaluation of property default values occurs only when the value is first needed,
and only once when MATLAB first initializes the class. MATLAB does not reevaluate the
expression each time you create an instance of the class.
For more information on the evaluation of expressions that you assign as property default
values, see “When MATLAB Evaluates Expressions” on page 6-13.
The following class defines three properties. Model and Color use default attribute
values, resulting in public read and write access. SerialNumber has read-only access by
object users. Assign the SerialNumber property value from a class member function,
such as the constructor or other class method.
5-12
Properties
classdef NewCar
properties
Model
Color
end
properties (SetAccess = private)
SerialNumber
end
methods
...
end
end
A = NewCar
A =
Model: []
Color: []
SerialNumber: []
A.Model = 'XGT7000';
A.Color = 'Red';
classdef NewCar
properties
Model
Color
end
properties (SetAccess = private)
SerialNumber
end
methods
function obj = NewCar(model,color)
5-13
5 Class Definition—Syntax Reference
obj.Model = model;
obj.Color = color;
obj.SerialNumber = datenum(datetime('now'));
end
end
end
A = NewCar('XGT7000','Red')
A =
Model: 'XGT7000'
Color: 'Red'
SerialNumber: 7.362456078531134e+05
See Also
Related Examples
• “Ways to Use Properties” on page 8-2
• “Validate Property Values” on page 8-24
5-14
Methods and Functions
5-15
5 Class Definition—Syntax Reference
The left most argument does not need to be the class object, and the argument list can
have multiple objects. MATLAB dispatches to the method defined by the class of the
dominant argument. For more information, see “Method Invocation” on page 9-15.
Methods must be on the MATLAB path when called. For example, if you create an object
and then change your current folder to a folder from which the method file is not visible,
an error occurs when you call that method.
Ordinary Methods
Call ordinary methods using MATLAB function syntax or dot notation. For example,
suppose you have a class that defines ordinaryMethod. Pass an object of the defining
class and whatever arguments are required.
classdef MyClass
methods
function out = ordinaryMethod(obj,arg1)
...
end
end
end
Call ordinaryMethod using the object obj of the class and either syntax:
obj = MyClass;
r = ordinaryMethod(obj,arg1);
r = obj.ordinaryMethod(arg1);
Static Methods
Static methods do not require an object of the class. To call a static method, prefix the
method name with the class name so that MATLAB can determine what class defines the
method.
classdef MyClass
methods (Static)
function out = staticMethod(arg1)
...
end
end
end
5-16
Methods and Functions
r = MyClass.staticMethod(arg1);
See “Static Methods” on page 9-32 for information on methods that do not require
objects of their class.
Private Methods
Use the Access method attribute to create a private method. You do not need to use a
private folder.
Class-Related Functions
You can define functions that are not class methods in the file that contains the class
definition (classdef). Define local functions outside of the classdef - end block, but
in the same file as the class definition. Functions defined in classdef files work like local
functions. You can call these functions from anywhere in the same file, but they are not
visible outside of the file in which you define them.
Local functions in classdef files are useful for utility functions that you use only within
that file. These functions can take or return arguments that are instances of the class but,
it is not necessary, as in the case of ordinary methods. For example, the following code
defines myUtilityFcn outside the classdef block:
classdef MyClass
properties
PropName
end
methods
function obj = MyClass(arg1)
obj.PropName = arg1;
end
end
end % End of classdef
5-17
5 Class Definition—Syntax Reference
function myUtilityFcn
...
end
You also can create package functions, which require the use of the package name when
calling these functions.
You can overload MATLAB arithmetic, logical, relational, and indexing operators by
defining class methods with the appropriate names.
See the handle class for a list of operations defined for that class. All classes deriving
from handle inherit these methods.
• To specify attributes for a method defined in a separate file, declare this method in a
methods block in the classdef file. Specify the attribute values with the methods
block.
• The syntax declared in the methods block (if used) must match the method's
function line.
• The separate file must be in the class folder.
• The class constructor method must be defined in the classdef file. The constructor
cannot be in a separate file.
• Handle class delete methods must be defined in the classdef file. The delete
method cannot be in a separate file.
All functions that use dots in their names must be defined in the classdef file,
including:
• Converter methods that must use the package name as part of the class name
because the class is contained in packages
5-18
See Also
For more information on defining methods in separate files, see “Methods in Separate
Files” on page 9-11
See Also
More About
• “Methods in Class Design” on page 9-2
5-19
5 Class Definition—Syntax Reference
• Subclasses handle
• Defines an event named StateChange
• Triggers the event using the inherited notify method in its upDateUI method.
classdef MyClass < handle
events
StateChange
end
...
methods
function upDateUI(obj)
...
notify(obj,'StateChange');
end
end
end
To control the lifecycle of the listener, use the event.listener constructor to create the
listener object.
5-20
See Also
See Also
event.hasListener | event.listener | event.proplistener
Related Examples
• “Overview Events and Listeners” on page 11-2
• “Events and Listeners Syntax” on page 11-22
5-21
5 Class Definition—Syntax Reference
Attribute Specification
In this section...
“Attribute Syntax” on page 5-22
“Attribute Descriptions” on page 5-22
“Attribute Values” on page 5-23
“Simpler Syntax for true/false Attributes” on page 5-23
Attribute Syntax
Attributes modify the behavior of classes and class components (properties, methods, and
events). Attributes enable you to define useful behaviors without writing complicated
code. For example, you can create a read-only property by setting its SetAccess
attribute to private, but leaving its GetAccess attribute set to public:
All class definition blocks (classdef, properties, methods, and events) support
specific attributes. All attributes have default values. Specify attribute values only in
cases where you want to change from the default value to another predefined value.
Note Specify the value of a particular attribute only once in any component block.
Attribute Descriptions
For lists of supported attributes, see:
5-22
Attribute Specification
Attribute Values
When you specify attribute values, those values affect all the components defined within
the defining block. For example, the following property definition blocks set the:
When specifying class attributes, place the attribute list directly after the classdef
keyword:
classdef (AttributeName = attributeValue) ClassName
...
end
5-23
5 Class Definition—Syntax Reference
methods (~Static)
...
end
All attributes that take a logical value (that is, true or false) have a default value of
false. Therefore, specify an attribute only if you want to set it to true.
See Also
Related Examples
• “Evaluation of Expressions in Class Definitions” on page 6-10
5-24
Call Superclass Methods on Subclass Objects
superMethod@MySuperClass(obj,superMethodArguments)
For example, a subclass can call a superclass disp method to implement the display of
the superclass part of the object. Then the subclass adds code to display the subclass part
of the object:
5-25
5 Class Definition—Syntax Reference
obj = obj@MySuperClass(SuperClassArguments);
In the following class, the MySub object is initialized by the MySuperClass constructor.
The superclass constructor constructs the MySuperClass part of the object using the
specified arguments.
classdef MySub < MySuperClass
methods
function obj = MySub(arg1,arg2,...)
obj = obj@MySuperClass(SuperClassArguments);
...
5-26
See Also
end
end
end
See Also
Related Examples
• “Modify Inherited Methods” on page 12-16
5-27
5 Class Definition—Syntax Reference
To use the CircleArea class, copy this code into a file named CircleArea.m and save
this file in a folder that is on the MATLAB path.
classdef CircleArea
properties
Radius
end
properties (Constant)
P = pi
end
properties (Dependent)
Area
end
methods
function obj = CircleArea(r)
if nargin > 0
obj.Radius = r;
end
end
function val = get.Area(obj)
val = obj.P*obj.Radius^2;
end
function obj = set.Radius(obj,val)
if val < 0
error('Radius must be positive')
end
obj.Radius = val;
end
5-28
Representative Class Code
function plot(obj)
r = obj.Radius;
d = r*2;
pos = [0 0 d d];
curv = [1 1];
rectangle('Position',pos,'Curvature',curv,...
'FaceColor',[.9 .9 .9])
line([0,r],[r,r])
text(r/2,r+.5,['r = ',num2str(r)])
title(['Area = ',num2str(obj.Area)])
axis equal
end
function disp(obj)
rad = obj.Radius;
disp(['Circle with radius: ',num2str(rad)])
end
end
methods (Static)
function obj = createObj
prompt = {'Enter the Radius'};
dlgTitle = 'Radius';
rad = inputdlg(prompt,dlgTitle);
r = str2double(rad{:});
obj = CircleArea(r);
end
end
end
ca = CircleArea.createObj
5-29
5 Class Definition—Syntax Reference
ca.Area
ans =
164.2202
plot(ca)
5-30
Representative Class Code
5-31
5 Class Definition—Syntax Reference
The set.Radius method tests the value assigned to the Radius property to ensure the
value is not less than zero. MATLAB calls set.Radius to assign a value to Radius.
(“Property Set Methods” on page 8-56.
function obj = set.Radius(obj,val)
if val < 0
error('Radius must be positive')
end
obj.Radius = val;
end
The CircleArea class overloads the plot function. The plot method uses the
rectangle function to create a circle and draws the radius. (“Overload Functions in
Class Definitions” on page 9-34
function plot(obj)
r = obj.Radius;
d = r*2;
pos = [0 0 d d];
curv = [1 1];
rectangle('Position',pos,'Curvature',curv)
line([0,r],[r,r])
text(r/2,r+.5,['r = ',num2str(r)])
axis equal
end
The CircleArea class overloads the disp function to change the way MATLAB displays
objects in the command window.
function disp(obj)
rad = obj.Radius;
disp(['Circle with radius: ',num2str(rad)])
end
end
methods (Static)
The CircleArea class defines a Static method that uses a dialog box to create an
object. (“Static Methods” on page 9-32
function obj = createObj
prompt = {'Enter the Radius'};
dlgTitle = 'Radius';
rad = inputdlg(prompt,dlgTitle);
r = str2double(rad{:});
obj = CircleArea(r);
end
5-32
Representative Class Code
5-33
5 Class Definition—Syntax Reference
properties
EmployeeName
end
methods
function someMethod(obj,n)
EmployeeName = n;
end
end
While the previous function is legal MATLAB code, it results in Code Analyzer warnings
for two reasons:
obj.EmployeeName = n;
5-34
MATLAB Code Analyzer Warnings
function EN = someMethod(obj)
EN = EmployeeName;
end
The Code Analyzer returns only one warning, suggesting that you might actually want to
refer to the EmployeeName property.
While this version of someMethod is legal MATLAB code, it is confusing to give a property
the same name as a function. Therefore, the Code Analyzer provides a warning
suggesting that you might have intended the statement to be:
EN = obj.EmployeeName;
The Code Analyzer does not warn when a variable name is the same as a property name
when the variable is:
In these particular cases, the Code Analyzer does not warn you that you are using a
variable name that is also a property name. Therefore, a coding error like the following:
5-35
5 Class Definition—Syntax Reference
See Also
Related Examples
• “Use of Editor and Debugger with Classes” on page 5-49
5-36
Objects In Conditional Statements
Note You do not need to define eq methods for enumeration classes. See “Enumerations
in Switch Statements” on page 5-41.
All classes derived from the handle class inherit an eq method. The expression,
h1 == h2
5-37
5 Class Definition—Syntax Reference
The switch statements work only with scalar objects. For example:
h1(1) = BasicHandle('Handle Object');
h1(2) = BasicHandle('Handle Object');
h1(3) = BasicHandle('Handle Object');
h2 = h1;
switch h1
case h2
disp('h2 is selected')
otherwise
disp('h2 not selected')
end
5-38
Objects In Conditional Statements
In this case, h1 is not scalar. Use isscalar to determine if an object is scalar before
entering a switch statement.
Some MATLAB functions also use the built-in == operator in their implementation.
Therefore, your implementation of eq should be replaceable with the built-in eq to enable
objects of your class work like built-in types in MATLAB code.
Design of eq
Implement the eq method to returns a logical array representing the result of the ==
comparison.
For example, the SwitchOnVer class implements an eq method that returns true for the
== operation if the value of the Version property is the same for both objects. In
addition, eq works with arrays the same way as the built-in eq. For the following
expression:
obj1 == obj2
5-39
5 Class Definition—Syntax Reference
Implementation of eq
classdef SwitchOnVer
properties
Version
end
methods
function obj = SwitchOnVer(ver)
if nargin > 0
obj.Version = ver;
end
end
function bol = eq(obj1,obj2)
if ~strcmp(class(obj1),class(obj2))
error('Objects are not of the same class')
end
s1 = numel(obj1);
s2 = numel(obj2);
if s1 == s2
bol = false(size(obj1));
for k=1:s1
if obj1(k).Version == obj2(k).Version
bol(k) = true;
else
bol(k) = false;
end
end
elseif s1 == 1
bol = scalarExpEq(obj2,obj1);
elseif s2 == 1
bol = scalarExpEq(obj1,obj2);
else
error('Dimension missmatch')
end
function ret = scalarExpEq(ns,s)
% ns is nonscalar array
% s is scalar array
ret = false(size(ns));
n = numel(ns);
for kk=1:n
if ns(kk).Version == s.Version
5-40
Objects In Conditional Statements
ret(kk) = true;
else
ret(kk) = false;
end
end
end
end
end
end
...
if isscalar(objIn)
switch(objIn)
case ov1
disp('This is version 1.0')
case ov2
disp('This is version 2.0')
case ov3
disp('This is version 3.0')
otherwise
disp('There is no version')
end
else
error('Input object must be scalar')
end
For example, the WeeklyPlanner class defines enumerations for five days of the week.
The switch/case statements in the todaySchedule static method dispatch on the
enumeration member corresponding to the current day of the week. The date and
datestr functions return a char vector with the name of the current day.
5-41
5 Class Definition—Syntax Reference
classdef WeeklyPlanner
enumeration
Monday, Tuesday, Wednesday, Thursday, Friday
end
methods (Static)
function todaySchedule
dayName = datestr(date,'dddd');
dayEnum = WeeklyPlanner.(dayName);
switch dayEnum
case WeeklyPlanner.Monday
disp('Monday schedule')
case WeeklyPlanner.Tuesday
disp('Tuesday schedule')
case WeeklyPlanner.Wednesday
disp('Wednesday schedule')
case WeeklyPlanner.Thursday
disp('Thursday schedule')
case WeeklyPlanner.Friday
disp('Friday schedule')
end
end
end
end
Enumeration classes that derived from built-in types inherit the superclass eq method.
For example, the FlowRate class derives from int32:
classdef FlowRate < int32
enumeration
Low (10)
Medium (50)
High (100)
end
end
The switchEnum function switches on the input argument, which can be a FlowRate
enumeration value.
function switchEnum(inpt)
switch inpt
5-42
Objects In Conditional Statements
case 10
disp('Flow = 10 cfm')
case 50
disp('Flow = 50 cfm')
case 100
disp('Flow = 100 cfm')
end
end
switchEnum(FlowRate.Medium)
Flow = 50 cfm
5-43
5 Class Definition—Syntax Reference
Operations on Objects
In this section...
“Object Operations” on page 5-44
“Help on Objects” on page 5-45
“Functions to Test Objects” on page 5-47
“Functions to Query Class Components” on page 5-47
Object Operations
A fundamental purpose of objects is to contain data and facilitate ways to manipulate that
data. Objects often define their own version of ordinary MATLAB functions that work with
the object. For example, you can create a timeseries object and pass the object to
plot:
ts = timeseries(rand(100,1),.01:.01:1,'Name','Data1');
plot(ts)
5-44
Operations on Objects
However, MATLAB does not call the standard plot function. MATLAB calls the
timeseries plot method, which can extract the data from the timeseries object and
create a customized graph.
Help on Objects
Suppose you use an audioplayer object to play audio with MATLAB. To do this, load
audio data into MATLAB and create an audioplayer:
load('handel','Fs','y')
chorus = audioplayer(y,Fs);
5-45
5 Class Definition—Syntax Reference
The audioplayer function creates an object that you access using the object variable
chorus. MATLAB stores the audio source and other information in the object properties.
Here are the properties and values for the chorus instance of the audioplayer:
chorus
chorus =
The object’s documentation discusses the purpose of the object and describes the
properties and methods that you use when working with objects of that class.
You can also list the methods to see what operations you can perform. Pass the object to
the methods function to see the list:
methods(chorus)
5-46
Operations on Objects
play(chorus)
Function Description
isa Determine whether an argument is an object of specific class.
isequal Determine if two objects are equal, which means both objects are of
the same class and size and their corresponding property values are
equal.
a == b (eq) Determine if handle variable a refers to the same object as handle
variable b.
isobject Determine whether input is a MATLAB object
Function Description
class Return class of object.
enumeration Display class enumeration members and names.
events List event names defined by the class.
methods List methods implemented by the class.
methodsview List methods in separate window.
properties List class property names.
5-47
5 Class Definition—Syntax Reference
See Also
Related Examples
• “Class Syntax Guide”
5-48
Use of Editor and Debugger with Classes
To open myclass.m in the MATLAB editor, you could reference the file using dot-
separated package names:
edit PackFld1.PackFld2.myclass
To refer to a function defined in its own file inside of a class folder, use:
5-49
5 Class Definition—Syntax Reference
edit +PackFld1/+PackFld2/@myclass/myMethod
See “Automatic Updates for Modified Classes” on page 5-51 for information about
clearing class.
See Also
Related Examples
• “MATLAB Code Analyzer Warnings” on page 5-34
5-50
Automatic Updates for Modified Classes
In this section...
“When MATLAB Loads Class Definitions” on page 5-51
“Consequences of Automatic Update” on page 5-52
“What Happens When Class Definitions Change” on page 5-52
“Actions That Do Not Trigger Updates” on page 5-53
“Multiple Updates to Class Definitions” on page 5-53
“Object Validity with Deleted Class File” on page 5-53
“When Updates Are Not Possible” on page 5-53
“Potential Consequences of Class Updates” on page 5-54
“Updates to Class Attributes” on page 5-54
“Updates to Property Definitions” on page 5-55
“Updates to Method Definitions” on page 5-56
“Updates to Event Definitions” on page 5-57
• The first time the class is referenced, such as creating an instance, accessing a
constant property, or calling a static method of the class.
• Whenever the definition of a loaded class changes and MATLAB returns to the
command prompt.
• When you change the MATLAB path and cause a different definition of the class to be
used. The change takes effect after MATLAB returns to the command prompt.
• Whenever you access the class metadata.
MATLAB allows only one definition for a class to exist at any time. Therefore, MATLAB
attempts to update all existing objects of a class automatically to conform to the new class
definition. You do not need to call clear classes to remove existing objects when you
change their defining class.
5-51
5 Class Definition—Syntax Reference
Note Using an editor other than the MATLAB editor or using MATLAB Online™ can
result in delays to automatic updating.
Here is an example of what happens when you create an instance of a concrete class edit
the class definition to make the class abstract.
a = MyClass;
% Edit MyClass to make it Abstract
Note MATLAB does not update metaclass instances when you change the definition of a
class. You must get new metaclass data after updating a class definition.
5-52
Automatic Updates for Modified Classes
Objects do not update until referenced in a way that exposes the change, such as invoking
the object display or assigning to a property.
5-53
5 Class Definition—Syntax Reference
Some class updates cause situations in which MATLAB cannot update existing objects to
conform to a modified class definition. These cases result in errors until you delete the
objects:
Change Effect
Make Abstract = true Accessing existing objects returns an error.
Change AllowedSubclasses Newly created objects can inherit from different
superclasses than existing objects.
5-54
Automatic Updates for Modified Classes
Change Effect
Change ConstructOnLoad Loading classes obeys the current value of
ConstructOnLoad.
Change HandleCompatible Newly created objects can have different class hierarchy
than existing objects.
Change Hidden Appearance of class in list of superclasses and access by
help function can change
Change InferiorClasses Method dispatching for existing objects can change.
Make Sealed = true Existing subclass objects return errors when accessed.
Change Effect
Add property Adds the new property to existing objects of the class.
Sets the property values to the default value (which is
[] if the class definition does not specify a default).
Remove property Removes the property from existing objects of the class.
Attempts to access the removed property fail.
Change property default value Does not apply the new default value to existing objects
of the class.
Move property between Does not apply different default value when property
subclass and superclass definition moves between superclass and subclass.
5-55
5 Class Definition—Syntax Reference
Change Effect
Change property attribute Applies changes to existing objects of the class.
value
Some cases require transitional steps:
Change Effect
Add method You can call the new method on existing objects of the
class.
Modify method Modifications are available to existing objects.
Remove method You can on longer call deleted method on existing
objects.
5-56
Automatic Updates for Modified Classes
Change Effect
Change method attribute value Apply changes to existing objects of the class.
5-57
5 Class Definition—Syntax Reference
Change Effect
Change event attribute value Apply changes to existing objects of the class.
See Also
Related Examples
• “Use of Editor and Debugger with Classes” on page 5-49
5-58
Compatibility with Previous Versions
It is not possible to create class hierarchies that mix classes defined before Version 7.6
and current class definitions that use classdef. Therefore, you cannot subclass an old
class to create a version of the new class.
For classes defined using the new classdef keyword, a class folder shadows all class
folders that occur after it on the MATLAB path. Classes defined in class folders must
locate all class files in that single folder. However, classes defined in class folders
continue to take precedence over functions and scripts having the same name, even those
functions and scripts that come before them on the path.
Private Methods
You do not need to define private folders in class folders in Version 7.6. You can set the
method's Access attribute to private instead.
5-59
5 Class Definition—Syntax Reference
Compare the following two Stock constructor methods. The Stock class is a subclass of
the Asset class, which requires arguments passed to its constructor.
function s = Stock(description,num_shares,share_price)
s.NumShares = num_shares;
s.SharePrice = share_price;
% Construct Asset object
a = Asset(description,'stock',share_price*num_shares);
% Use the class function to define the stock object
s = class(s,'Stock',a);
Write the same Stock class constructor as shown here. Define the inheritance on the
classdef line and define the constructor within a methods block.
function s = Stock(description,num_shares,share_price)
% Call superclass constructor to pass arguments
s = s@Asset(description,'stock',share_price*num_shares);
s.NumShares = num_shares;
s.SharePrice = share_price;
end % End of function
5-60
Compatibility with Previous Versions
The following sections reimplement examples using the latest syntax. The original
MATLAB Classes and Objects documentation implemented these same examples and
provide a comparison of old and new syntax.
5-61
5 Class Definition—Syntax Reference
In this section...
“Some Differences from C++ and Java Code” on page 5-62
“Object Modification” on page 5-63
“Static Properties” on page 5-67
“Common Object-Oriented Techniques” on page 5-68
Public Properties
Unlike fields in C++ or the Java language, you can use MATLAB properties to define a
public interface separate from the implementation of data storage. You can provide public
access to properties because you can define set and get access methods that execute
automatically when assigning or querying property values. For example, the following
statement:
myobj.Material = 'plastic';
assigns the char vector plastic to the Material property of myobj. Before making the
actual assignment, myobj executes a method called set.Material (assuming the class
of myobj defines this method), which can perform any necessary operations. See
“Property Access Methods” on page 8-50 for more information on property access
methods.
You can also control access to properties by setting attributes, which enable public,
protected , or private access. See “Property Attributes” on page 8-9 for a full list of
property attributes.
No Implicit Parameters
5-62
Comparison of MATLAB and Other OO Languages
Dispatching
However, if the class of an argument is superior to the class of the other arguments,
MATLAB dispatches to the method of the superior argument, regardless of its position
within the argument list.
Other Differences
MATLAB classes do not support overloading functions using different signatures for the
same function name.
Object Modification
MATLAB classes can define public properties, which you can modify by explicitly
assigning values to those properties on a given instance of the class. However, only
classes derived from the handle class exhibit reference behavior. Modifying a property
value on an instance of a value classes (classes not derived from handle), changes the
value only within the context in which the modification is made.
5-63
5 Class Definition—Syntax Reference
MATLAB passes all variables by value. When you pass an object to a function, MATLAB
copies the value from the caller into the parameter variable in the called function.
However, MATLAB supports two kinds of classes that behave differently when copied:
See “Comparison of Handle and Value Classes” on page 7-2 for more information on the
behavior and use of both kinds of classes.
Passing Value Objects
When you pass a value object to a function, the function creates a local copy of the
argument variable. The function can modify only the copy. If you want to modify the
original object, return the modified object and assign it to the original variable name. For
example, consider the value class, SimpleClass :
classdef SimpleClass
properties
Color
end
methods
function obj = SimpleClass(c)
if nargin > 0
obj.Color = c;
end
end
end
end
Pass the object to the function g, which assigns blue to the Color property:
5-64
Comparison of MATLAB and Other OO Languages
function y = g(x)
x.Color = 'blue';
y = x;
end
y = g(obj);
The function g modifies its copy of the input object and returns that copy, but does not
change the original object.
y.Color
ans =
blue
obj.Color
ans =
red
If the function g did not return a value, the modification of the object Color property
would have occurred only on the copy of obj within the function workspace. This copy
would have gone out of scope when the function execution ended.
obj = g(obj);
When you pass a handle to a function, the function makes a copy of the handle variable,
just like when passing a value object. However, because a copy of a handle object refers
to the same object as the original handle, the function can modify the object without
having to return the modified object.
For example, suppose you modify the SimpleClass class definition to make a class
derived from the handle class:
5-65
5 Class Definition—Syntax Reference
obj = SimpleHandleClass('red');
Pass the object to the function g, which assigns blue to the Color property:
y = g(obj);
The function g sets the Color property of the object referred to by both the returned
handle and the original handle:
y.Color
ans =
blue
obj.Color
ans =
blue
y.Color = 'yellow';
obj.Color
ans =
yellow
The function g modified the object referred to by the input argument (obj) and returned
a handle to that object in y.
5-66
Comparison of MATLAB and Other OO Languages
Handles do not behave like references in C++. If you pass an object handle to a function
and that function assigns a different object to that handle variable, the variable in the
caller is not affected. For example, suppose you define a function g2:
function y = g2(x)
x = SimpleHandleClass('green');
y = x;
end
obj = SimpleHandleClass('red');
y = g2(obj);
y.Color
ans =
green
obj.Color
ans =
red
The function overwrites the handle passed in as an argument, but does not overwrite the
object referred to by the handle. The original handle obj still references the original
object.
Static Properties
In MATLAB, classes can define constant properties, but not "static" properties in the
sense of other languages like C++. You cannot change constant properties from the initial
value specified in the class definition.
MATLAB has long-standing rules that variables always take precedence over the names of
functions and classes. Assignment statements introduce a variable if one does not exist.
5-67
5 Class Definition—Syntax Reference
A.B = C
Introduce a new variable, A, that is a struct containing a field B whose value is C. If A.B
= C could refer to a static property of class A, then class A would take precedence over
variable A.
This behavior would be a significant incompatibility with prior releases of MATLAB. For
example, the introduction of a class named A on the MATLAB path could change the
meaning of an assignment statement like A.B = C inside a .m code file.
In other languages, classes rarely use static data, except as private data within the class
or as public constants. In MATLAB, you can use constant properties the same way you use
public final static fields in Java. To use data that is internal to a class in MATLAB,
create persistent variables in private or protected methods or local functions used
privately by the class.
Avoid static data in MATLAB. If a class has static data, using the same class in multiple
applications causes conflicts among applications. Conflicts are less of an issue in some
other languages. These languages compile applications into executables that run in
different processes. Each process has its own copy of the class static data. MATLAB,
frequently runs many different applications in the same process and environment with a
single copy of each class.
For ways to define and use static data in MATLAB, see “Static Data” on page 4-2.
5-68
Comparison of MATLAB and Other OO Languages
5-69
6
User-Defined Classes
In this section...
“What Is a Class Definition” on page 6-2
“Attributes for Class Members” on page 6-2
“Kinds of Classes” on page 6-3
“Constructing Objects” on page 6-3
“Class Hierarchies” on page 6-3
“classdef Syntax” on page 6-3
“Class Code” on page 6-4
Define MATLAB classes in code blocks, with subblocks delineating the definitions of
various class members. For syntax information on these blocks, see “Class Components”
on page 5-5.
Class definitions can provide information, such as inheritance relationships or the names
of class members without actually constructing the class. See “Class Metadata” on page
16-2.
6-2
User-Defined Classes
Kinds of Classes
There are two kinds of MATLAB classes—handle classes and value classes.
• Value classes represent independent values. Value objects contain the object data and
do not share this data with copies of the object. MATLAB numeric types are value
classes. Values objects passed to and modified by functions must return a modified
object to the caller.
• Handle classes create objects that reference the object data. Copies of the instance
variable refer to the same object. Handle objects passed to and modified by functions
affect the object in the caller’s workspace without returning the object.
For more information, see “Comparison of Handle and Value Classes” on page 7-2.
Constructing Objects
For information on class constructors, see “Class Constructor Methods” on page 9-21.
For information on creating arrays of objects, see “Construct Object Arrays” on page 10-
2.
Class Hierarchies
For more information on how to define class hierarchies, see “Hierarchies of Classes —
Concepts” on page 12-2.
classdef Syntax
Class definitions are blocks of code that are delineated by the classdef keyword at the
beginning and the end keyword at the end. Files can contain only one class definition.
The following diagram shows the syntax of a classdef block. Only comments and blank
lines can precede the classdef keyword.
6-3
6 Defining and Organizing Classes
...
end
classdef block
Class Code
Here is a simple class definition with one property and a constructor method that sets the
value of the property when there is an input argument supplied.
classdef MyClass
properties
Prop
end
methods
function obj = MyClass(val)
if nargin > 0
obj.Prop = val;
end
end
end
end
To create an object of MyClass, save the class definition in a .m file having the same
name as the class and call the constructor with any necessary arguments:
d = datestr(now);
o = MyClass(d);
6-4
See Also
o.Prop
ans =
10-Nov-2005 10:38:14
The constructor should support a no argument syntax so MATLAB can create default
objects. For more information, see “No Input Argument Constructor Requirement” on
page 9-25.
For more information on the components of a class definition, see “Class Components” on
page 5-5
See Also
Related Examples
• “Create a Simple Class” on page 2-2
• “Developing Classes — Typical Workflow” on page 3-8
• “Representing Structured Data with Classes” on page 3-19
6-5
6 Defining and Organizing Classes
Class Attributes
In this section...
“Specifying Class Attributes” on page 6-6
“Specifying Attributes” on page 6-8
“Class-Specific Attributes” on page 6-9
For more information on attribute syntax, see “Attribute Specification” on page 5-22.
6-6
Class Attributes
Class Attributes
6-7
6 Defining and Organizing Classes
(default =
false)
Framework attributes Classes that use certain framework base classes have framework-specific
attributes. See the documentation for the specific base class you are using
for information on these attributes.
Specifying Attributes
Attributes are specified for class members in the classdef, properties, methods, and
events definition blocks. The particular attribute setting applies to all members defined
within that particular block. You can use multiple properties, methods, and events
definition blocks. to apply different attribute setting to different class members.
Class attributes settings are not inherited, so superclass attribute values do not affect
subclasses.
Attribute Syntax
6-8
See Also
Class-Specific Attributes
Some MATLAB classes define additional attributes that you can use only with the class
hierarchies that define these attributes. See the specific documentation for the classes
you are using for information on any additional attributes supported by those classes.
See Also
More About
• “Expressions in Attribute Specifications” on page 6-11
6-9
6 Defining and Organizing Classes
For information on assign property default values and attribute values, see the following
topics:
classdef MyClass
% Some attributes are set to logical values
properties (Constant = true)
CnstProp = 2*pi
end
properties
% Static method of this class
Prop1 = MyClass.setupAccount
% Constant property from this class
Prop2 = MyClass.CnstProp
6-10
Evaluation of Expressions in Class Definitions
MATLAB does not call property set methods when assigning the result of default value
expressions to properties. (See “Property Access Methods” on page 8-50 for information
about these special methods.)
Enumerations that derived from MATLAB types can use expression to assign a value:
classdef FlowRate < int32
enumeration
Low (10)
Medium (FlowRate.Low*5)
High (FlowRate.Low*10)
end
end
MATLAB evaluates these expressions only once when enumeration members are first
accessed.
For attributes values that are logical true or false, class definitions can specify
attribute values using expressions. For example, this assignment makes MyClass sealed
(cannot be subclassed) for versions of MATLAB before R2014b (verLessThan)
classdef (Sealed = verLessThan('matlab','8.4')) MyClass
The expression on the right side of the equal sign (=) must evaluate to true or false.
You cannot use any definitions from the class file in this expression, including any
constant properties, static methods, and local functions.
While you can use conditional expression to set attribute values, doing so can cause the
class definition to change based on external conditions. Ensure that this behavior is
consistent with your class design.
6-11
6 Defining and Organizing Classes
See “Attribute Specification” on page 5-22 for more information on attribute syntax.
Property definitions allow you to specify default values for properties using any
expression that has no reference to variables. For example, VectorAngle defines a
constant property (Rad2Deg) and uses it in an expression that defines the default value of
another property (Angle). The default value expression also uses a static method
(getAngle) defined by the class:
classdef VectorAngle
properties (Constant)
Rad2Deg = 180/pi
end
properties
Angle = VectorAngle.Rad2Deg*VectorAngle.getAngle([1 0],[0 1])
end
methods
function obj = VectorAngle(vx,vy)
obj.Angle = VectorAngle.getAngle(vx,vy);
end
end
methods (Static)
function r = getAngle(vx,vy)
% Calculate angle between 2D vectors
cr = vx(1)*vy(1) + vx(2)*vy(2)/sqrt(vx(1)^2 + vx(2)^2) * ...
sqrt(vy(1)^2 + vy(2)^2);
r = acos(cr);
end
end
end
You cannot use the input variables to the constructor to define the default value of the
Angle property. For example, this definition for the Angle property is not valid:
properties
Angle = VectorAngle.Rad2Deg*VectorAngle.getAngle(vx,vy)
end
6-12
Evaluation of Expressions in Class Definitions
a = VectorAngle([1,0],[0,1])
Expression in class methods execute like expressions in any function. MATLAB evaluates
an expression within the function workspace when the method executes. Therefore,
expressions used in class methods are not considered part of the class definition and are
not discussed in this section.
MATLAB evaluates expressions in the context of the class file, so these expressions can
access any functions, static methods, and constant properties of other classes that are on
your path at the time MATLAB initializes the class. Expressions defining property default
values can access constant properties defined in their own class.
After initialization, the values returned by these expressions are part of the class
definition and are constant for all instances of the class. Each instance of the class uses
the results of the initial evaluation of the expressions without re-evaluation.
If you clear a class, then MATLAB reinitializes the class by reevaluating the expressions
that are part of the class definition. (see “Automatic Updates for Modified Classes” on
page 5-51)
6-13
6 Defining and Organizing Classes
classdef ContClass
properties
% Assign current date and time
TimeProp = datestr(now)
end
end
classdef ClassExp
properties
ObjProp = ContClass
end
end
When you first use the ClassExp class, MATLAB creates an instance of the ContClass
class. MATLAB initializes both classes at this time. All instances of ClassExp include a
copy of this same instance of ContClass.
a = ClassExp;
a.ObjProp.TimeProp
ans =
08-Oct-2003 17:16:08
The TimeProp property of the ContClass object contains the date and time when
MATLAB initialized the class. Creating additional instances of the ClassExp class shows
that the date string has not changed:
b = ClassExp;
b.ObjProp.TimeProp
ans =
08-Oct-2003 17:16:08
6-14
Evaluation of Expressions in Class Definitions
Because this example uses a value class for the contained object, each instance of the
ClassExp has its own copy of the object. For example, suppose that you change the value
of the TimeProp property on the object contained by ClassExp objectb:
b.ObjProp.TimeProp = datestr(now)
ans =
08-Oct-2003 17:22:49
a.ObjProp.TimeProp
ans =
08-Oct-2003 17:16:08
Creating two instances of the ClassExp class shows that MATLAB created an object
when it initialized the ContClass. MATLAB used a copy of the object’s handle for each
instance of the ClassExp class. Therefore, there is one ContClass object and the
ObjProp property of each ClassExp object contains a copy of its handle.
Create an instance of the ClassExp class and note the time of creation:
a = ClassExp;
a.ObjProp.TimeProp
ans =
08-Oct-2003 17:46:01
Create a second instance of the ClassExp class. The ObjProp contains the handle of the
same object:
6-15
6 Defining and Organizing Classes
b = ClassExp;
b.ObjProp.TimeProp
ans =
08-Oct-2003 17:46:01
b.ObjProp.TimeProp = datestr(now);
b.ObjProp.TimeProp
ans =
08-Oct-2003 17:47:34
The ObjProp property of object b contains a handle to the same object as the ObjProp
property of object a. The value of the TimeProp property has changed on this object as
well:
a.ObjProp.TimeProp
ans =
08-Oct-2003 17:47:34
See Also
More About
• “Comparison of Handle and Value Classes” on page 7-2
6-16
Folders Containing Class Definitions
• Path folders — The folder is on the MATLAB path and the folder name does not begin
with an @ character. Use this type of folder when you want multiple classes in one
folder. However, the entire class definition must be contained in one .m file.
• Class folders — The folder name begins with an @ character followed by the class
name. The folder is not on the MATLAB path, but its parent folder is on the path. Use
this type of folder when you want to use multiple files for one class definition.
See the path function for information about the MATLAB path.
6-17
6 Defining and Organizing Classes
The name of each class definition file must match the name of the class that is specified
with the classdef keyword. Using a path folder eliminates the need to create a separate
class folder for each class. However, the entire class definition, including all methods,
must be contained within a single file.
.../path_folder/MyClass1.m
.../path_folder/MyClass2.m
.../path_folder/MyClass2.m
addpath path_folder
.../parent_folder/@MyClass/MyClass.m
.../parent_folder/@MyClass/myMethod1.m
.../parent_folder/@MyClass/myMethod2.m
Define only one class per folder. All files must have a .m extension.
Use a class folder when you want to use more than one file for your class definition.
MATLAB treats any .m file in the class folder as a method of the class. Class files provide
the advantage that MATLAB can explicitly identify any file in the folder as a method of
that class. For more information, see “Changing Path to Update Class Definition” on page
6-21.
The base name of each file must be a valid MATLAB function name. Valid function names
begin with an alphabetic character and can contain letters, numbers, or underscores. For
more information, see “Methods in Separate Files” on page 9-11.
6-18
Folders Containing Class Definitions
If a class folder contains a private folder, only the class defined in that folder can access
functions defined in the private folder. Subclasses do not have access to superclass
private functions. For more information on private folders, see “Private Functions”.
If you want a subclass to have access to the private functions of the superclass, define the
functions as protected methods of the superclass. Specify the methods with the Access
attribute set to protected.
If a class defines functions in a private folder that is in a class folder, then MATLAB
follows these precedence rules when dispatching to the private functions vs. a local
function defined in the classdef file:
You cannot put class definitions (classdef file) in private folders because doing so would
not meet the requirements for class or path folders.
For example, consider a path with the following folders, containing the files indicated.
6-19
6 Defining and Organizing Classes
Here is the logic that MATLAB applies to determine which version of Foo to call:
• The method bar is not recognized as part of the Foo class defined in fldr3/@Foo.
In MATLAB Versions 5 through 7, class folders do not shadow other class folders having
the same name, but residing in later path folders. Instead, the class uses the combination
6-20
Folders Containing Class Definitions
of methods from all class folders having the same name to define the class. This behavior
is no longer supported.
For backward compatibility, classes defined in class folders always take precedence over
functions and scripts having the same name. This precedence applies to functions and
scripts that come before these classes on the path.
Suppose that you define two versions of a class named Foo in two folders, fldA and
fldB.
fldA/+FooPkg/@Foo/Foo.m
fldB/+FooPkg/@Foo/Foo.m
addpath fldA
a = FooPkg.Foo;
cd fldB
The current folder is always first on the path. Therefore, MATLAB finds fldB/+FooPkg/
@Foo/Foo.m as the definition for class FooPkg.Foo.
b = FooPkg.Foo;
MATLAB automatically updates the existing instance, a, to use the new class definition in
fldB.
6-21
6 Defining and Organizing Classes
Suppose that you define two versions of a class named Foo in two folders, fldA and
fldB, but do not use a class folder.
fldA/+FooPkg/Foo.m
fldB/+FooPkg/Foo.m
addpath fldA
a = FooPkg.Foo;
cd fldB
The current folder is effectively the top of the path. However, MATLAB does not identify
fldB/+FooPkg/Foo.m as the definition for class FooPkg.Foo. MATLAB continues to use
the original class definition until you clear the class.
clear FooPkg.Foo
MATLAB automatically updates the existing objects to conform to the class definition in
fldB. In most cases, clearing instance variables is unnecessary.
See Also
More About
• “Packages Create Namespaces” on page 6-25
• “Automatic Updates for Modified Classes” on page 5-51
6-22
Class Precedence
Class Precedence
In this section...
“Use of Class Precedence” on page 6-23
“Why Mark Classes as Inferior” on page 6-23
“InferiorClasses Attribute” on page 6-23
InferiorClasses Attribute
Specify the relative precedence of user-defined classes using the class
InferiorClasses attribute. To specify classes that are inferior to the class you are
defining, assign a cell array of class meta.class objects to this attribute.
6-23
6 Defining and Organizing Classes
For example, the following classdef declares that MyClass is dominant over
ClassName1 and ClassName2.
The ? operator combined with a class name creates a meta.class object. See
metaclass.
The following MATLAB classes are always inferior to classes defined using the classdef
syntax and should not be used in this list.
double, single, int64, uint64, int32, uint32, int16, uint16, int8, uint8, char,
string, logical, cell, struct, and function_handle.
Dominant Class
MATLAB uses class dominance when evaluating expressions involving objects of more
than one class. The dominant class determines:
• Which class method to call when more than one class defines methods with the same
names.
• The class of arrays that are formed by combining objects of different classes, assuming
MATLAB can convert the inferior objects to the dominant class.
No Attribute Inheritance
See Also
More About
• “Class Precedence and MATLAB Path” on page 6-19
• “Dominant Argument in Overloaded Graphics Functions” on page 9-49
6-24
Packages Create Namespaces
Package Folders
Packages are special folders that can contain class folders, function, and class definition
files, and other packages. The names of classes and functions are scoped to the package
folder. A package is a namespace within which names must be unique. Function and class
names must be unique only within the package. Using a package provides a means to
organize classes and functions. Packages also enable you to reuse the names of classes
and functions in different packages.
Note Packages are not supported for classes created prior to MATLAB Version 7.6 (that
is, classes that do not use classdef).
+mypack
+mypack/pkfcn.m % a package function
+mypack/@myClass % class folder in a package
The parent of the top-level package folder must be on the MATLAB path.
help event
Contents of event:
6-25
6 Defining and Organizing Classes
what event
Internal Packages
MathWorks® reserves the use of packages named internal for utility functions used by
internal MATLAB code. Functions that belong to an internal package are intended for
MathWorks use only. Using functions or classes that belong to an internal package is
discouraged. These functions and classes are not guaranteed to work in a consistent
manner from one release to the next. Any of these functions and classes might be
removed from the MATLAB software in any subsequent release without notice and
without documentation in the product release notes.
+mypack/pkfcn.m
z = mypack.pkfcn(x,y);
Definitions do not use the package prefix. For example, the function definition line of the
pkfcn.m function would include only the function name:
function z = pkfcn(x,y)
classdef myClass
6-26
Packages Create Namespaces
obj = mypack.myClass(arg1,arg2,...);
Calling class methods does not require the package name because you have an object of
the class. You can use dot or function notation:
obj.myMethod(arg)
myMethod(obj,arg)
A static method requires the full class name, which includes the package name:
mypack.myClass.stMethod(arg)
obj = mypack.MyClass;
This section shows you how to access various package members from outside a package.
Suppose that you have a package mypack with the following contents:
+mypack
+mypack/myfcn.m
+mypack/@MyFirstClass
+mypack/@MyFirstClass/myFcn.m
+mypack/@MyFirstClass/otherFcn.m
+mypack/@MyFirstClass/MyFirstClass.m
+mypack/@MySecondClass
+mypack/@MySecondClass/MySecondClass.m
+mypack/+mysubpack
+mypack/+mysubpack/myFcn.m
mypack.myFcn(arg)
6-27
6 Defining and Organizing Classes
obj1 = mypack.MyFirstClass;
obj2 = mypack.MySecondClass(arg);
If mypack.MyFirstClass has a method called myFcn, call it like any method call on an
object:
obj = mypack.MyFirstClass;
myFcn(obj,arg);
If mypack.MyFirstClass has a property called MyProp, assign it using dot notation and
the object:
obj = mypack.MyFirstClass;
obj.MyProp = x;
Package members remain scoped to the package. Always refer to the package members
using the package name. Alternatively, import the package into the function in which you
call the package member, see “Import Classes” on page 6-30.
Package folders do not shadow other package folders that are positioned later on the
path, unlike classes, which do shadow other classes. If two or more packages have the
same name, MATLAB treats them all as one package. If redundantly named packages in
different path folders define the same function name, then MATLAB finds only one of
these functions.
Suppose a package and a class have the same name. For example:
fldr_1/+foo
fldr_2/@foo/foo.m
6-28
See Also
A call to which foo returns the path to the executable class constructor:
A function and a package can have the same name. However, a package name by itself is
not an identifier. Therefore, if a redundant name occurs alone, it identifies the function.
Executing a package name alone returns an error.
In cases where a package and a class have the same name, a static method takes
precedence over a package function. For example, path folder fldrA contains a package
function and path folder fldrB contains a class static method:
fldrA/+foo/bar.m % bar is a function in package foo
fldrB/@foo/bar.m % bar is a static method of class foo
which foo.bar
fldrB/@foo/bar.m
In cases where the same path folder contains both package and class folders with the
same name, the class static method takes precedence over the package function.
fldr/@foo/bar.m % bar is a static method of class foo
fldr/+foo/bar.m % bar is a function in package foo
which foo.bar
fldr/@foo/bar.m
See Also
More About
• “Folders Containing Class Definitions” on page 6-17
• “Class Precedence” on page 6-23
6-29
6 Defining and Organizing Classes
Import Classes
In this section...
“Syntax for Importing Classes” on page 6-30
“Import Package Functions” on page 6-30
“Package Function and Class Method Name Conflict” on page 6-31
“Clearing Import List” on page 6-31
function myFunc
import pkg.cls1
obj = cls1(arg,...); % call cls1 constructor
obj.Prop = cls1.staticMethod(arg,...); % call cls1 static method
end
function myFunc
import pkg.*
obj1 = cls1(arg,...); % call pkg.cls1 constructor
obj2 = cls2(arg,...); % call pkg.cls2 constructor
a = pkgFunction(); % call package function named pkgFunction
end
function myFunc
import pkg.pkfcn
pkfcn(arg,...); % call imported package function
end
6-30
See Also
import pkg.*
myobj = pkg.MyClass;
timedata(myobj)
A call to timedata finds the package function, not the class method because MATLAB
applies the import and finds pkg.timedata first. Do not use a package in cases where
you have name conflicts and plan to import the package.
clear import
See Also
More About
• “Packages Create Namespaces” on page 6-25
6-31
7
In this section...
“Basic Difference” on page 7-2
“Behavior of MATLAB Built-In Classes” on page 7-3
“User-Defined Value Classes” on page 7-4
“User-Defined Handle Classes” on page 7-5
“Determining Equality of Objects” on page 7-8
“Functionality Supported by Handle Classes” on page 7-10
Basic Difference
A value class constructor returns an object that is associated with the variable to which it
is assigned. If you reassign this variable, MATLAB creates an independent copy of the
original object. If you pass this variable to a function to modifying it, the function must
return the modified object as an output argument. For information on value-class
behavior, see “Avoid Unnecessary Copies of Data”.
A handle class constructor returns a handle object that is a reference to the object
created. You can assign the handle object to multiple variables or pass it to functions
without causing MATLAB to make a copy of the original object. A function that modifies a
handle object passed as an input argument does not need to return the object.
All handle classes are derived from the abstract handle class.
By default, MATLAB classes are value classes. The following definition creates a value
class named MyValueClass:
classdef MyValueClass
...
end
To create a handle class, derive the class from the handle class.
7-2
Comparison of Handle and Value Classes
b
7
MATLAB graphics objects are implemented as handle objects because they represent
visual elements. For example, create a graphics line object and copy its handle to another
variable. Both variables refer to the same line object.
x = 1:10; y = sin(x);
l1 = line(x,y);
l2 = l1;
Set the properties of the line object using either copy of the handle.
set(l2,'Color','red')
set(l1,'Color','green')
get(l2,'Color')
ans =
0 1 0
Calling the delete function on the l2 handle destroys the line object. If you attempt to
set the Color property on the line l1, the set function returns an error.
delete(l2)
set(l1,'Color','blue')
7-3
7 Value or Handle Class — Which to Use
If you delete the object by deleting any one of the existing handles, all copies are now
invalid because you deleted the single object to which all handles refer.
Deleting a handle object is not the same as clearing the handle variable. In the graphics
object hierarchy, the parent of the object holds a reference to the object. For example, the
parent axes hold a reference to the line object referred to by l1 and l2. If you clear both
variables from the workspace, the object still exists.
For more information on the behavior of handle objects, see “Handle Object Behavior” on
page 1-9.
Value objects are always associated with one workspace or temporary variable. Value
objects go out of scope when their variable goes out of scope or is cleared. There are no
references to value objects, only copies that are independent objects.
Here is a value class that stores a value in its Number property. The default property
value is the number 1.
classdef NumValue
properties
Number = 1
end
end
a = NumValue
a =
7-4
Comparison of Handle and Value Classes
Number: 1
b =
Number: 1
The variables a and b are independent. Changing the value of the Number property of a
does not affect the Number property of b.
a.Number = 7
a =
Number: 7
b =
Number: 1
When you pass a value object to a function, MATLAB creates a copy of that object in the
function workspace. Because copies of value objects are independent, the function does
not modify the object in the caller’s workspace. Therefore, functions that modify value
objects must return the modified object to be reassigned in the caller’s workspace.
7-5
7 Value or Handle Class — Which to Use
copy the data stored in the object properties. The copy refers to the same object as the
original handle. If you change a property value on the original object, the copied handle
references the same change.
Here is a handle class that stores a value in its Number property. The default property
value is the number 1.
a = NumHandle
a =
Number: 1
b = a
b =
Number: 1
The variables a and b refer to the same underlying object. Changing the value of the
Number property of a also changes the Number property of b. That is, a and b refer to the
same object.
a.Number = 7
a =
7-6
Comparison of Handle and Value Classes
Number: 7
b =
Number: 7
When you pass a handle object to a function, MATLAB creates a copy of the handle in the
function workspace. Because copies of handles reference the same underlying object,
functions that modify the handle object effectively modify the object in the caller’s
workspace as well. Therefore, it is not necessary for functions that modify handle objects
passed as input arguments to return the modified object to the caller.
Deleting Handles
You can destroy handle objects by explicitly calling the handle delete method. Deleting
the handle of a handle class object makes all handles invalid. For example:
a = NumHandle;
b = a;
delete(a)
b.Number
Calling delete on a handle object invokes the destructor function or functions for that
object. See “Handle Class Destructor” on page 7-16 for more information.
For information on the differences between initializing properties to default values in the
properties block and initializing properties from within the constructor, see “Initialize
Property Values” on page 8-18 and “Initialize Arrays of Handle Objects” on page 10-11.
7-7
7 Value or Handle Class — Which to Use
Equality for handle objects means that the handle variables refer to the same object. You
also can identify handle variables that refer to different objects of the same class that
have the same state.
To determine if value objects are the same size and their contents are of equal value, use
isequal. For example, use the previously defined NumValue class to create two
instances and test for equality:
a = NumValue;
b = NumValue;
isequal(a,b)
ans =
a and b are independent and therefore are not the same object. However each represents
the same value.
If you change the value represented by a value object, the objects are no longer equal.
a = NumValue;
b = NumValue;
b.Number = 7;
isequal(a,b)
ans =
Handle objects inherit an eq method from the handle base class. You can use == and
isequal to test for two different relationships among handle objects:
7-8
Comparison of Handle and Value Classes
• The handles refer to the same object: == and isequal return true.
• The handles refer to objects of the same class that have the same values, but are not
the same objects — only isequal returns true.
Use the previously defined NumHandle class to create an object and copy the handle.
a = NumHandle;
b = a;
a == b
ans =
isequal(a,b)
ans =
Create two instances of the NumHandle class using the default values.
a = NumHandle;
b = NumHandle;
a == b
ans =
isequal(a,b)
ans =
7-9
7 Value or Handle Class — Which to Use
See “The Handle Superclass” on page 7-13 for more information on the handle class and
its methods.
See Also
Related Examples
• “Which Kind of Class to Use” on page 7-11
• “Implement Copy for Handle Classes” on page 7-35
• “Handle Object Behavior” on page 1-9
7-10
Which Kind of Class to Use
Handle classes enable you to create objects that more than one function or object can
share. Handle objects allow more complex interactions among objects because they allow
objects to reference each other.
“Implementing Linked Lists with Classes” on page 3-31 and “Developing Classes —
Typical Workflow” on page 3-8 provides examples of a handle class.
A value class is suitable because you can copy a polynomial object and have two objects
that are identical representations of the same polynomial. For an example of value
classes, see “Subclasses of MATLAB Built-In Types” on page 12-50.
7-11
7 Value or Handle Class — Which to Use
• No two instances of a class can have the same state, making it impossible to have
exact copies. For example:
• A copy of a graphics object (such as a line) has a different position in its parents list
of children than the object from which it was copied. Therefore, the two objects are
not identical.
• Nodes in lists or trees having specific connectivity to other nodes — no two nodes
can have the same connectivity.
• The class represents physical and unique objects like serial ports and printers.
• The class represents visible objects like graphics components.
• The class defines events and notifies listeners when an event occurs (notify is a
handle class method).
• The class creates listeners by calling the handle class addlistener method.
• The class subclasses the dynamicprops class (a subclass of handle) so that
instances can define dynamic properties.
• The class subclasses the matlab.mixin.SetGet class (a subclass of handle) so that
it can implement a graphics object style set/get interface to access property values.
• You want to create a singleton class or a class in which you track the number of
instances from within the constructor.
• Instances of a class cannot share state, such as nodes in a linked list.
See Also
Related Examples
• “Handle Compatible Classes” on page 12-39
7-12
The Handle Superclass
To add both handle behavior and specific functionality to your class, derive your class
from these handle classes:
For information on how to define subclasses, see “Design Subclass Constructors” on page
12-9 .
List the methods of a class by passing the class name to the methods function:
7-13
7 Value or Handle Class — Which to Use
methods('handle')
addlistener findobj gt lt
delete findprop isvalid ne
eq ge le notify
Relational Methods
TF = eq(H1,H2)
TF = ne(H1,H2)
TF = lt(H1,H2)
TF = le(H1,H2)
TF = gt(H1,H2)
TF = ge(H1,H2)
The handle class overloads these functions to support equality tests and sorting on
handles. For each pair of input arrays, these functions return a logical array of the same
size. Each element is an element-wise equality or comparison test result. The input arrays
must be the same size or one (or both) can be scalar. The method performs scalar
expansion as required. For more information on handle class relational methods, see
relationaloperators.
B = isvalid(H)
B is a logical array in which each element is true if, and only if, the corresponding
element of H is a valid handle. B is always the same size as H.
7-14
See Also
When MATLAB destroys an object, it also destroys values stored in the properties of the
object. MATLAB frees computer memory associated with the object for use by MATLAB or
the operating system.
You do not need to free memory in handle classes. However, there can be other operations
that you want to perform when destroying an object. For example, closing a file or
shutting down an external program that the object constructor started. Define a delete
method in your handle subclass for these purposes.
See Also
Related Examples
• “Comparison of Handle and Value Classes” on page 7-2
7-15
7 Value or Handle Class — Which to Use
Basic Knowledge
Class destructor – a method named delete that MATLAB calls implicitly before
destroying an object of a handle class. Also, user-defined code can call delete explicitly
to destroy an object.
Nondestructor – a method named delete that does not meet the syntax requirements of
a valid destructor. Therefore, MATLAB does not call this method implicitly when
destroying handle objects. A method named delete in a value class is not a destructor. A
method named delete in a value class that sets the HandleCompatible attribute to
true is not a destructor.
7-16
Handle Class Destructor
• Must define one, scalar input argument, which is an object of the class.
• Must not define output arguments
• Cannot be Sealed, Static, or Abstract
MATLAB does not call a noncompliant delete method when destroying objects of the
class. A delete method that is not a valid destructor shadows the handle base class
delete method. A noncompliant delete method can prevent the destruction of the
object by shadowing the handle class delete method.
methods
function delete(obj)
% obj is always scalar
...
end
end
MATLAB calls the delete method separately for each element in an array. Therefore, a
delete method is passed only one scalar argument with each invocation.
Calling delete on a deleted handle should not error and can take no action. This design
enables delete to work on object arrays containing a mix of valid and invalid objects.
7-17
7 Value or Handle Class — Which to Use
A delete method can access properties of the object being deleted. MATLAB does not
destroy these properties until after the delete methods for the class of the object and all
superclasses finish executing.
If a delete method creates new variables that contain a handle to the object being
deleted, those handles are invalid. After the delete method finishes execution, handles
to the deleted object in any variables in any workspace are invalid.
The isvalid method returns false for the handle object within the delete method
because object destruction begins when the method is called.
MATLAB calls delete methods in the inverse of the construction order. That is, MATLAB
invokes subclass delete methods before superclass delete methods.
For example, the PartialObject class delete method determines if the Data property
is empty before accessing the data this property contains. If an error occurs while
assigning the constructor argument to the Name property, MATLAB passes the partially
constructed object to delete.
7-18
Handle Class Destructor
h.Data.a = rand(10,1);
end
end
function delete(h)
% Protect against accessing properties
% of partially constructed objects
if ~isempty(h.Data)
t = h.Data.a;
disp(t)
else
disp('Data is empty')
end
end
end
end
An error occurs if you call the constructor with a char vector, instead of the required cell
array:
obj = PartialObject('Test')
MATLAB passes the partially constructed object to the delete method. The constructor
did not set the value of the Data property because the error occurred when setting the
Name property.
Data is empty
Error setting 'Name' property of 'PartialObject' class:
...
If an error occurs during the construction of a handle class, MATLAB calls the class
destructor on the object along with the destructors for any objects contained in properties
and any initialized base classes.
For example, suppose that a method opens a file for writing and you want to close the file
in your delete method. The delete method can call fclose on a file identifier that the
object stores in its FileID property:
7-19
7 Value or Handle Class — Which to Use
function delete(obj)
fclose(obj.FileID);
end
Classes cannot define a valid destructor that is Sealed. MATLAB returns an error when
you attempt to instantiate a class that defines a Sealed delete method.
For example, if a superclass defines a method named delete that is not a valid
destructor, but is Sealed, then subclasses:
Heterogeneous class hierarchies require that all methods to which heterogeneous arrays
are passed must be sealed. However, the rule does not apply to class destructor methods.
Because destructor methods cannot be sealed, you can define a valid destructor in a
heterogeneous hierarchy that is not sealed, but does function as a destructor.
Object Lifecycle
MATLAB invokes the delete method when the lifecycle of an object ends. The lifecycle of
an object ends when the object is:
7-20
Handle Class Destructor
Inside a Function
The lifecycle of an object referenced by a local variable or input argument exists from the
time the variable is assigned until the time it is reassigned, cleared, or no longer
referenced within that function or in any handle array.
A variable goes out of scope when you explicitly clear it or when its function ends. When a
variable goes out of scope and its value belongs to a handle class that defines a delete
method, MATLAB calls that method. MATLAB defines no ordering among variables in a
function. Do not assume that MATLAB destroys one value before another value when the
same function contains multiple values.
MATLAB invokes the delete methods in the following sequence when destroying an
object:
MATLAB invokes the delete methods of superclasses at the same level in the hierarchy
in the order specified in the class definition. For example, the following class definition
specifies supclass1 before supclass2. MATLAB calls the delete method of
supclass1 before the delete method of supclass2.
After calling each delete method, MATLAB destroys the property values belonging
exclusively to the class whose method was called. The destruction of property values that
contain other handle objects can cause a call the delete methods for those objects when
there are no other references to those objects.
7-21
7 Value or Handle Class — Which to Use
Consider a set of objects that reference other objects of the set such that the references
form a cyclic graph. In this case, MATLAB:
• Destroys the objects if they are referenced only within the cycle
• Does not destroy the objects as long as there is an external reference to any of the
objects from a MATLAB variable outside the cycle
MATLAB destroys the objects in the reverse of the order of construction. for more
information, see “Handle Object During delete Method Execution” on page 7-17.
delete(obj)
A class can prevent explicit destruction of an object by setting its delete method
Access attribute to private. However, a method of the class can call the private
delete method.
If the class delete method Access attribute is protected, only methods of the class
and of subclasses can explicitly delete objects of that class.
However, when an object lifecycle ends, MATLAB calls the object’s delete method when
destroying the object regardless of the method’s Access attribute.
Class destructor behavior differs from the normal behavior of an overridden method.
MATLAB executes each delete method of each superclass upon destruction, even if that
delete method is not public.
When you explicitly call an object’s delete method, MATLAB checks the delete method
Access attribute in the class defining the object, but not in the superclasses of the object.
A superclass with a private delete method cannot prevent the destruction of subclass
objects.
Declaring a private delete method makes most sense for sealed classes. In the case where
classes are not sealed, subclasses can define their own delete methods with public access.
7-22
Handle Class Destructor
For example, if the superclass implements a Sealed method named delete that is not a
valid destructor, then MATLAB does not allow subclasses to override this method.
Java objects that hold references to MATLAB objects can prevent deletion of the MATLAB
objects. In these cases, MATLAB does not call the handle object delete method even
when there is no handle variable referring to that object. To ensure your delete method
executes, call delete on the object explicitly before the handle variable goes out of
scope.
Problems can occur when you define callbacks for Java objects that reference MATLAB
objects.
7-23
7 Value or Handle Class — Which to Use
function cbFunc(obj,varargin)
c = class(obj);
disp(['Java object callback on class ',c])
end
function delete(obj)
c = class(obj);
disp(['ML object destructor called for class ',c])
end
end
end
function testDestructor
cwj = CallbackWithJava
...
end
testDestructor
cwj =
The handle variable, cwj, exists only in the function workspace. However, MATLAB does
not call the class delete method when the function ends. The
com.mathworks.jmi.Callback object still exists and holds a reference to the object of
the CallbackWithJava class, which prevents destruction of the MATLAB object.
clear classes
To avoid causing inaccessible objects, call delete explicitly before losing the handle to
the MATLAB object.
function testDestructor
cwj = CallbackWithJava
...
delete(cwj)
end
7-24
See Also
MATLAB applications that use Java objects should manage the lifecycle of the objects
involved. A typical user interface application references Java objects from MATLAB
objects and creates callbacks on Java objects that reference MATLAB objects.
• Explicitly call delete on the MATLAB objects when they are no longer needed
• Unregister the Java object callbacks that reference MATLAB objects
• Use intermediate handle objects that reference both the Java callbacks and the
MATLAB objects.
See Also
More About
• “Handle Object Behavior” on page 1-9
7-25
7 Value or Handle Class — Which to Use
function HM = findobj(H,<conditions>)
The findobj method returns an array of handles matching the conditions specified. You
can use regular expressions with findobj. For more information, see regexp.
function mp = findprop(h,'PropertyName')
The property can also be a dynamic property created by the addprop method of the
dynamicprops class.
Use the returned meta.property object to obtain information about the property, such
as the settings of any of its attributes. For example, the following statements determine
that the setting of the AccountStatus property Dependent attribute is false.
ba = BankAccount(007,50,'open');
mp = findprop(ba,'AccountStatus');
mp.Dependent
ans =
0
See Also
handle
7-26
See Also
Related Examples
• “Class Metadata” on page 16-2
7-27
7 Value or Handle Class — Which to Use
In this section...
“The Standard Set/Get Interface” on page 7-28
“Subclass Syntax” on page 7-28
“Get Method Syntax” on page 7-29
“Set Method Syntax” on page 7-29
“Class Derived from matlab.mixin.SetGet” on page 7-30
You can add set and get functionality to your class by deriving from one of these classes:
Note The set and get methods referred to in this section are different from property set
access and property get access methods. See “Property Access Methods” on page 8-50
for information on property access methods.
Subclass Syntax
Use the abstract class matlab.mixin.SetGet or matlab.mixin.SetGetExactNames
as a superclass:
7-28
Implement Set/Get Interface for Properties
v = get(H,'PropertyName');
If you specify an array of handles with a single property name, get returns the property
value for each object as a cell array of values:
CV = get(H,'PropertyName');
If you specify a cell array of char vector property names and an array of handles, get
returns a cell array of property values. Each row in the cell corresponds to an object in
the handle array. Each column in the cell corresponds to a property name.
props = {'PropertyName1','PropertyName2'};
CV = get(H,props);
If you specify a handle array, but no property names, get returns an array of type struct
in which each structure in the array corresponds to an object in H. Each field in each
structure corresponds to a property defined by the class of H. The value of each field is
the value of the corresponding property.
SV = get(H);
For an example, see “Using get with Arrays of Handles” on page 7-32.
7-29
7 Value or Handle Class — Which to Use
set(H,'PropertyName',PropertyValue)
You can pass a cell array of property names and a cell array of property values to set:
props = {'PropertyName1','PropertyName2'};
vals = {Property1Value,Property2Value};
set(H,props,vals)
If length(H) is greater than one, then the property value cell array (vals) can have
values for each property in each object. For example, suppose length(H) is 2 (two object
handles). You want to assign two property values on each object:
props = {'PropertyName1','PropertyName2'};
vals = {Property11Value,Property12Value;Property21Value,Property22Value};
set(H,props,vals))
If you specify a scalar handle, but no property names, set returns a struct with one
field for each property in the class of H. Each field contains an empty cell array.
SV = set(h);
7-30
Implement Set/Get Interface for Properties
end
function obj = set.Style(obj,val)
if ~(strcmpi(val,'-') ||...
strcmpi(val,'--') ||...
strcmpi(val,'..'))
error('Invalid line style ')
end
obj.Style = val;
end
function obj = set.Marker(obj,val)
if ~isstrprop(val,'graphic')
error('Marker must be a visible character')
end
obj.Marker = val;
end
end
end
Query the value of any object property using the inherited get method:
get(h,'Marker')
ans =
Set the value of any property using the inherited set method:
set(h,'Marker','Q')
For more information on property access methods, see “Property Access Methods” on
page 8-50
7-31
7 Value or Handle Class — Which to Use
Return a struct containing object properties and their current values using get:
h = LineType('--','*');
SV = get(h)
SV =
Style: '--'
Marker: '*'
Units: 'points'
Return a struct containing the properties that have public SetAccess using set:
S = set(h)
S =
Style: {}
Marker: {}
The LineType class defines the Units property with SetAccess = protected.
Therefore, S = set(h) does not create a field for Units in S.
set cannot return possible values for properties that have nonpublic set access.
H = [LineType('..','z'),LineType('--','q')]
H =
Style
Marker
Units
CV = get(H,'Style')
7-32
Implement Set/Get Interface for Properties
CV =
'..'
'--'
When H is an array of handles and you do not specify a property name, get returns a
struct array containing fields with names corresponding to property-names. Assign the
output of get to a variable when H is not scalar.
SV = get(H)
SV =
Get the value of the Marker property from the second array element in the SV array of
structures:
SV(2).Marker
ans =
You can pass an array of handles, a cell array of property names, and a cell array of
property values to set. The property value cell array must have one row of property
values for each object in H. Each row must have a value for each property in the property
name array:
H = [LineType('..','z'),LineType('--','q')];
set(H,{'Style','Marker'},{'..','o';'--','x'})
H(1)
ans =
7-33
7 Value or Handle Class — Which to Use
Style: '..'
Marker: 'o'
Units: 'points
H(2)
ans =
Style: '--'
Marker: 'x'
Units: 'points'
Customize the way property lists display by redefining the following methods in your
subclass:
• setdisp — When you call set with no output argument and a single scalar handle
input, set calls setdisp to determine how to display the property list.
• getdisp — When you call get with no output argument and a single scalar handle
input, get calls getdisp to determine how to display the property list.
See Also
get | set
More About
• “Ways to Use Properties” on page 8-2
7-34
Implement Copy for Handle Classes
Create an object of the CopyObj class and assign the handle of a line object to the
property Prop.
a = CopyObj;
a.Prop = line;
b = copy(a);
a == b
ans =
logical
7-35
7 Value or Handle Class — Which to Use
However, the line object referred to by a.Prop has not been copied. The handle
contained in a.Prop refers to the same object as the handle contained in b.Prop.
a.Prop == b.Prop
ans =
logical
For more detailed information on the behavior of the copy operation, see
matlab.mixin.Copyable.copy.
To implement different copy behavior for different properties, override copyElement. For
example, the copyElement method of the SpecializedCopy class:
7-36
Implement Copy for Handle Classes
a = SpecializedCopy;
a.Prop1 = 7
a =
Prop1: 7
Prop2: '17-Feb-2015 17:51:23'
b = copy(a)
b =
Prop1: 7
Prop2: '17-Feb-2015 17:51:58'
The copy (object b) has the same value for Prop1, but the subclass copyElement method
assigned a new value to Prop2. Notice the different timestamp.
7-37
7 Value or Handle Class — Which to Use
that contains a handle object, you are actually copying the handle, not the object itself.
Therefore, your copy references the same object as the original object. Classes that
derive from the matlab.mixin.Copyable class can customize the way the copy method
copies objects of the class.
Suppose that you define a class that stores a handle in an object property. You want to be
able to copy objects of the class and want each copy of an object to refer to a new handle
object. Customize the class copy behavior using these steps:
The “HandleCopy” on page 7-39 class customizes copy operations for the property that
contains a handle object. The “ColorProp” on page 7-39 class defines the handle object
to assign to Prop2:
a = HandleCopy;
a.Prop1 = 7;
a.Prop2 = ColorProp;
Make a copy of the object using the copy method inherited from
matlab.mixin.Copyable:
b = copy(a);
Demonstrate that the handle object contained by object a and b are independent.
Changing the value on object a does not affect object b:
a.Prop2.Color = 'red';
b.Prop2.Color
ans =
blue
7-38
Implement Copy for Handle Classes
HandleCopy
The HandleCopy class customizes the copy operation for objects of this class.
ColorProp
The ColorProp class defines a color by assigning an RGB value to its Color property.
7-39
7 Value or Handle Class — Which to Use
properties (NonCopyable)
Prop1
end
Default Values
If a property that is not copyable has a default value assigned in the class definition, the
copy operation assigns the default value to the property. For example, the CopiedClass
assigns a default value to Prop2.
a = CopiedClass;
a.Prop1 = 7
a =
7-40
See Also
Prop1: 7
Prop2: '17-Feb-2015 15:19:34'
b = copy(a)
b =
Prop1: []
Prop2: '17-Feb-2015 15:19:34'
In the copy b, the value of Prop1 is not copied. The value of Prop2 is set to its default
value, which MATLAB determined when first loading the class. The timestamp does not
change.
Subclasses of the dynamicprops class allow you to add properties to an object of the
class. When a class derived from dynamicprops is also a subclass of
matlab.mixin.Copyable, the default implementation of copyElement does not copy
dynamic properties. The default value of NonCopyable is true for dynamic properties.
For example, this copy operation copies the dynamic property, DynoProp, because its
NonCopyable attribute is set to false. The object obj must be an instance of a class
that derives from both dynamicprops and matlab.mixin.Copyable:
obj = MyDynamicClass;
p = addprop(obj,'DynoProp');
p.NonCopyable = false;
obj2 = copy(obj);
See Also
matlab.mixin.Copyable
7-41
7 Value or Handle Class — Which to Use
Related Examples
• “Dynamic Properties — Adding Properties to an Instance” on page 8-69
7-42
8
In this section...
“What Are Properties” on page 8-2
“Types of Properties” on page 8-3
In some ways, properties are like fields of a struct object. However, storing data in an
object property provides more flexibility. Properties can:
• Define a constant value that you cannot change outside the class definition. See
“Define Class Properties with Constant Values” on page 15-2.
• Calculate its value based on the current value of other data. See “Property Get
Methods” on page 8-60.
• Execute a function to determine if an attempt to assign a value meets a certain
criteria. See “Property Set Methods” on page 8-56.
• Trigger an event notification when any attempt is made to get or set its value. See
“Property-Set and Query Events” on page 11-17.
• Control access by code to the property values. See the SetAccess and GetAccess
attributes “Property Attributes” on page 8-9.
• Control whether its value is saved with the object in a MAT-file. See “Save and Load
Objects” on page 13-2.
For an example of a class that defines and uses a class, see “Create a Simple Class” on
page 2-2.
8-2
Ways to Use Properties
Types of Properties
There are two types of properties:
Dependent properties save memory because property values that depend on other values
are calculated only when needed.
• Compute the value of a property from other values (for example, you can compute
area from Width and Height properties).
• Provide a value in different formats depending on other values. For example, the size
of a push button in values determined by the current setting of its Units property.
• Provide a standard interface where a particular property is or is not used, depending
on other values. For example, different computer platforms can have different
components on a toolbar).
For examples of classes that use dependent properties, see “Calculate Data on Demand”
on page 3-23 and “A Class Hierarchy for Heterogeneous Arrays” on page 20-2.
8-3
8 Properties — Storing Class Data
See Also
Related Examples
• “Property Attributes” on page 8-9
• “Property Access Methods” on page 8-50
• “Static Properties” on page 5-67
8-4
Property Syntax
Property Syntax
In this section...
“Property Definition Block” on page 8-5
“Access Property Values” on page 8-6
“Inheritance of Properties” on page 8-7
“Specify Property Attributes” on page 8-7
Coefficients = [0 0 1]
end
properties block
8-5
8 Properties — Storing Class Data
The preceding example shows the Coefficients property specified as having a default
value of [0 0 1].
You can initialize property values with MATLAB expressions. However, these expressions
cannot refer to the class that you are defining in any way, except to call class static
methods. MATLAB executes expressions that create initial property values only when
initializing the class, which occurs just before first using the class. See “Property Default
Values” on page 8-18 for more information about how MATLAB evaluates default value
expressions.
Property names must be listed on separate lines. MATLAB interprets a name following a
property name as the name of a class.
You can restrict property values by associating a class with the property in the property
definition. For example, the definition of MyData requires that values assigned to this
property must be of type int32 or types that are compatible with int32.
properties
MyData int32
end
Assign values to properties by putting the property reference on the left side of the equal
sign:
obj.PropertyName = val
8-6
See Also
When you access a property, MATLAB executes any property set or get access method
and triggering any enabled property events.
Inheritance of Properties
When you derive one class from another class, the derived (subclass) class inherits all the
properties of the superclass. In general, subclasses define only properties that are unique
to that particular class. Superclasses define properties that more than one subclass use.
For example, the following code shows the SetAccess attribute set to private for the
IndependentVar and Order properties, but not for the Coefficients property:
properties
Coefficients = [0 0 1];
end
properties (SetAccess = private)
IndependentVar
Order = 0
end
These properties (and any others placed in
this block) have private set access
For information about the properties of a specific class, use the properties function.
See Also
Related Examples
• “Validate Property Values” on page 8-24
8-7
8 Properties — Storing Class Data
8-8
Property Attributes
Property Attributes
In this section...
“Purpose of Property Attributes” on page 8-9
“Specifying Property Attributes” on page 8-9
“Table of Property Attributes” on page 8-9
For more information on attribute syntax, see “Attribute Specification” on page 5-22.
8-9
8 Properties — Storing Class Data
Property Attributes
8-10
Property Attributes
8-11
8 Properties — Storing Class Data
8-12
Property Attributes
8-13
8 Properties — Storing Class Data
8-14
Property Attributes
8-15
8 Properties — Storing Class Data
See Also
Related Examples
• “Property Definition” on page 8-17
8-16
Property Definition
Property Definition
In this section...
“What You Can Define” on page 8-17
“Initialize Property Values” on page 8-18
“Property Default Values” on page 8-18
“Assign Property Values from Constructor” on page 8-19
“Initialize Properties to Unique Values” on page 8-19
“Property Attributes” on page 8-19
“Property Access Methods” on page 8-20
“Reference Object Properties Using Variables” on page 8-21
• Specify a default value for each property individually, see “Property Default Values” on
page 8-18.
• Assign property values in a class constructor, see “Assign Property Values from
Constructor” on page 8-19.
• Define properties with constant values, see “Named Values” on page 14-2.
• Assign property attribute values on a per block basis, see “Property Attributes” on
page 8-19.
• Define methods that execute when the property is set or queried, see “Property Access
Methods” on page 8-20.
• Define the class and size of property values, see “Validate Property Values” on page 8-
24.
• Define properties that do not store values, but whose values depend on other
properties, see “Types of Properties” on page 8-3.
Note Always use case-sensitive property names in your MATLAB code. Properties cannot
have the same name as the class.
8-17
8 Properties — Storing Class Data
• In the property definition — MATLAB evaluates the expression only once and assigns
the same value to the property of every instance.
• In a class constructor — MATLAB evaluates the assignment expression for each
instance, which ensures that each instance has a unique value.
For more information on the evaluation of expressions that you assign as property default
values, see “When MATLAB Evaluates Expressions” on page 6-13.
If the class definition does not specify a default property value, MATLAB sets the property
value to empty double ([]).
Note Evaluation of property default values occurs only when the value is first needed,
and only once when MATLAB first initializes the class. MATLAB does not reevaluate the
expression each time you create an instance of the class.
For more information on the evaluation of expressions that you assign as property default
values, see “Evaluation of Expressions in Class Definitions” on page 6-10 and “Properties
Containing Objects” on page 8-66.
8-18
Property Definition
classdef MyClass
properties
Prop1
end
methods
function obj = MyClass(intval)
obj.Prop1 = intval;
end
end
end
When you assign a property in the class constructor, MATLAB evaluates the assignment
statement for each object you create. Assign property values in the constructor if you
want each object to contain a unique value for that property.
For example, suppose that you want to assign a unique handle object to the property of
another object each time you create one of those objects. Assign the handle object to the
property in the constructor. Call the handle object constructor to create a unique handle
object with each instance of your class.
Property Attributes
All properties have attributes that modify certain aspects of the property's behavior.
Specified attributes apply to all properties in a particular properties block. For example:
8-19
8 Properties — Storing Class Data
classdef ClassName
properties (PropertyAttribute = value)
Prop1
Prop2
end
end
For example, only methods in the same class definition can modify and query the Salary
and Password properties.
classdef EmployeeInfo
properties (Access = private)
Salary
Password
end
end
This restriction exists because the class defines these properties in a properties block
with the Access attribute set to private.
Property Attributes
For a description of property attributes you can specify, see, “Property Attributes” on
page 8-9.
end
MATLAB does not call the property set access method when assigning the default value
specified in the property's definition block.
8-20
See Also
For example, the set.Password method tests the length of the character array assigned
to a property named Password. If there are fewer than seven characters in the value
assigned to the property, MATLAB returns the error. Otherwise, MATLAB assigns the
specified value to the property.
For more information on property access methods, see “Property Access Methods” on
page 8-50.
object.(PropertyNameVar)
PropName = 'KeyType';
function o = getPropValue(obj,PropName)
o = obj.(PropName);
end
See Also
Related Examples
• “Evaluation of Expressions in Class Definitions” on page 6-10
• “Ways to Use Properties” on page 8-2
• “Validate Property Values” on page 8-24
8-21
8 Properties — Storing Class Data
• SetAccess = public — Any code with access to an object can set public property
values. There are differences between the behavior of handle and value classes with
respect to modifying object properties.
• SetAccess = protected — Only code executing from within class methods or
methods of subclasses can set property values. You cannot change the value of an
object property unless the class or any of its subclasses defines a method to do so.
• SetAccess = private — Only the defining class can set property values. You can
change the value of an object property only if the class defines a method that sets the
property.
• SetAccess = immutable — Property value is set during construction. You cannot
change the value of an immutable property after the object is created. Set the value of
the property as a default or in the class constructor.
classdef Immute
properties (SetAccess = immutable)
CurrentDate
end
methods
function obj = Immute
obj.CurrentDate = date;
end
8-22
See Also
end
end
a = Immute
a =
CurrentDate: '19-Oct-2005'
See Also
Related Examples
• “Property Attributes” on page 8-9
• “Object Modification” on page 5-63
8-23
8 Properties — Storing Class Data
Validation Syntax
The highlighted area in the following code shows the syntax for property validation.
• Size — The length of each dimension, specified as a positive integer or a colon. A colon
indicates that any length is allowed in that dimension. The value assigned to the
8-24
Validate Property Values
property must conform to the specified size or be compatible with the specified size.
For more information, see “Property Size Validation” on page 8-31.
• Class — The name of a single MATLAB class. The value assigned to the property must
be of the specified class or convertible to the specified class. Use any MATLAB class or
externally defined class that is supported by MATLAB, except for Java and COM
classes. For more information, see “Property Class Validation” on page 8-33.
• Functions — A comma-separated list of validation function names. MATLAB passes the
value assigned to the property to each the validation functions after applying any
possible class and size conversions. Validator functions throw errors if the validation
fails, but do not return values. For more information, see “Property Validation
Functions” on page 8-40.
For a list of MATLAB validation functions, see “MATLAB Validation Functions” on page
8-43.
Use property validation for public properties to control the values user code assigns to
the properties.
If you want to restrict property values to a fixed set of identifiers, create an enumeration
class for these identifiers and constrain the property to this class. For information on
enumeration classes, see “Define Enumeration Classes” on page 14-5.
MATLAB type conversion rules apply to property validation. For example, MATLAB can
coerce among numeric types in most cases. Therefore, restricting a property value to a
specific numeric type, such as double does not prevent the assignment of other numeric
types to the property.
To ensure that a property can be assigned only a specific type of value, restrict the
property to a type that supports only the desired type conversions or use a validation
function to specify the exact class allowed for the property instead of specifying the
property type. MATLAB evaluate the type specification before executing any validation
functions. For more information, see “Order of Validation” on page 8-27.
Ensure that any default value assigned to the property meets the restrictions imposed by
the specified validation. If you do not specify a default value, MATLAB creates a default
value by assigning an empty object of the specified class or by calling the default
8-25
8 Properties — Storing Class Data
constructor if size restriction does not allow the use of an empty default value. The
default constructor must return an object of the correct size.
• Location must be a 1-by-3 array of class double whose values are real, finite
numbers.
• Label must be a char vector that is either 'High', 'Medium', or 'Low'.
• State must be an enumeration member of the matlab.lang.OnOffSwitchState
class (off or on).
Validation at Instantiation
Creating an object of the ValidateProps class performs the validation on implicit and
explicit default values:
a = ValidateProps
a =
Location: [0 0 0]
Label: 'Low'
State: off
• Initializes the Location property value to [0 0 0] to satisfy the size and class
requirements.
• Sets the Label property to its default value, 'Low'. The default value must be a
member of the allowed set of values. The empty char implicit default value would
cause an error.
8-26
Validate Property Values
• Sets the State property to the off enumeration member defined by the
matlab.lang.OnOffSwitchState class.
For information on how MATLAB selects default values, see “Default Values Per Size and
Class” on page 8-37.
Order of Validation
When a value is assigned to the property, including default values that are specified in the
class definition, MATLAB performs validation in this order:
• Class validation — This validation can cause conversion to a different class, such as
conversion of a char to string. Assignment to properties follows MATLAB coercion
rules for arrays.
• Size validation — This validation can cause size conversion, such as scalar expansion
or conversion of a column vector to a row vector. Assignment to a property that
specifies a size validation behaves the same as assignment to any MATLAB array. For
information on indexed assignment, see “Array Indexing”.
• Validator functions — MATLAB passes the result of the class and size validation to
each validation function, in left to right order. An error can occur before all validation
functions have been called, which ends the validation process.
• Set method — MATLAB performs property validation before calling a property set
method, if one is defined for that property. Assignment to the property within a
property set or get method does not apply the validation again. Often, you can replace
property set methods using property validation.
The ValueProp class uses size, class, and function validation to ensure that an
assignment to the Value property is a double scalar that is not negative.
classdef ValueProp
properties
Value(1,1) double {mustBeNonnegative} = 0
end
end
This statement attempts to assign a cell array to the property. This assignment violates
the class validation.
a.Value = {10,20};
8-27
8 Properties — Storing Class Data
This statement attempts to assign a 1-by-2 double array to the property. This assignment
violates the size validation.
This statement attempts to assign a scalar double to the property. This assignment fails
the function validation, which requires a nonnegative number.
a.Value = -10;
8-28
Validate Property Values
If a class definition changes the property validation such that the loaded property value is
no longer valid, MATLAB substitutes the currently defined default value for that property.
However, the load function suppresses the validation errors that occur before assigning
the default value from the current class definition. Therefore, validation errors are
silently ignored during load operations.
To illustrate this behavior, this example creates, saves, and loads an object of the
MonthTemp class. This class restricts the AveTemp property to a cell array.
classdef MonthTemp
properties
AveTemp cell
end
end
a = MonthTemp;
a.AveTemp = {'May',70};
save TemperatureFile a
Edit the property definition to change the validation class for the AveTemp property from
cell array to containers.Map.
classdef MonthTemp
properties
AveTemp containers.Map
end
end
Load the saved object with the new class definition on the MATLAB path. MATLAB cannot
assign the saved value to the AveTemp property because the cell array, {'May',70}, is
not compatible with the current requirement that the property value be a
containers.Map object. MATLAB cannot convert a cell array to a containers.Map.
To address the incompatibility, MATLAB sets the AveTemp property of the loaded object to
the current default value, which is an empty containers.Map object.
load TemperatureFile a
a.AveTemp
8-29
8 Properties — Storing Class Data
ans =
Count: 0
KeyType: char
ValueType: any
The loaded object has a different value assigned to the AveTemp property because the
saved value is now invalid. However, the load process suppresses the validation error.
To prevent loss of data when changing class definitions and reloading objects, implement
a loadobj method or class converter method that enables the saved values to satisfy the
current property validation.
For more information on saving and loading objects, see “Save and Load Process for
Objects” on page 13-2.
See Also
Related Examples
• “Property Class and Size Validation” on page 8-31
• “Property Validation Functions” on page 8-40
8-30
Property Class and Size Validation
For more information, see “Order of Validation” on page 8-27 and “Property Validation
Functions” on page 8-40.
classdef MyClass
properties
Prop(dim1,dim2,...) = defaultValue
end
end
This class defines the size of the Location property as 1-by-3. Any value assigned to this
property must conform to that size or must be convertible to that size.
classdef ValidateProps
properties
Location(1,3)
end
end
8-31
8 Properties — Storing Class Data
The implicit default value assigned by MATLAB, [0 0 0], conforms to the specified size:
a = ValidateProps
a =
Location: [0 0 0]
MATLAB applies scalar expansion when you assign a scalar the Location property.
a = ValidateProps;
a.Location = 1
a =
Location: [1 1 1]
col =
1
1
1
a.Location = col
a =
Location: [1 1 1]
A colon in the size specification indicates that the corresponding dimension can have any
length. For example, you can assign a value of any length to the Label property in this
class.
classdef ValidateProps
properties
8-32
Property Class and Size Validation
Label(1,:)
end
end
a = ValidateProps;
a.Label = 'Click to Start'
a =
Assignment to a property that defines size validation follows the same rules as the
equivalent indexed array assignment. For information on indexing behavior of
multidimensional arrays, see “Compatible Array Sizes for Basic Operations”.
You can specify only one class per property. Use validation functions like mustBeNumeric
or mustBeInteger to restrict properties to a broader category of classes. For more
information on validation functions, see “Property Validation Functions” on page 8-40.
You can use any MATLAB class or externally defined class that is supported by MATLAB,
except Java and COM classes.
Place the name of the class in the property definition block following the property name
and optional size specification.
classdef MyClass
properties
Prop ClassName = defaultValue
end
end
If you do not specify a default value, MATLAB assigns an empty object of the specified
class to the property. If you define a size and a class, MATLAB attempts to create a default
value for the property that satisfies both the size and class requirement.
8-33
8 Properties — Storing Class Data
MATLAB creates the default value by calling the class constructor with no arguments.
The class must have a constructor that returns an object of the specified size when called
with no input arguments or you must specify a default value for the property that satisfies
the property size restriction. For more information, see “Default Values Per Size and
Class” on page 8-37.
classdef PropsWithClass
properties
Number double
Today char = date
end
end
p = PropsWithClass
p =
Number: []
Today: '10-Sep-2016'
MATLAB performs conversions from any compatible class to the property class. For
example, assign a datetime array to the Today property.
p.Today = [datetime('now'),datetime('tomorrow')];
disp(class(p.Today))
ans =
char
Because the datetime class has a char converter, you can assign a datetime array to
the Today property.
8-34
Property Class and Size Validation
Assigning an incompatible value to a property that uses class validation causes an error.
p.Number = datetime('now');
You can define a class to control the values assigned to a property. Enumeration classes
enable users to set property values to character vectors or string scalars with inexact
name matching.
For example, suppose that there is a class that represents a three-speed mechanical
pump. You can define an enumeration class to represent the three flow rates.
The Pump class has a method to return the current flow rate in gallons per minute. Define
the Speed property as a FlowRate class.
classdef Pump
properties
Speed FlowRate
end
methods
function getGPM(p)
if isempty(p.Speed)
gpm = 0;
else
gpm = int32(p.Speed);
end
fprintf('Flow rate is: %i GPM\n',gpm);
end
end
end
8-35
8 Properties — Storing Class Data
p = Pump;
p.Speed = 'm'
p =
Speed: Medium
getGPM(p)
For information about enumeration classes, see “Define Enumeration Classes” on page
14-5.
When integer overflow occurs, the value that is assigned to a property might not be the
value from the right side of the assignment statement.
For example, suppose that you want to restrict a property value to a scalar uint8.
classdef IntProperty
properties
Value(1,1) uint8
end
end
Assigning a numeric value to the Value property effectively casts the numeric value to
uint8, but does not result in an error for out-of-range values.
a = IntProperty;
a.Value = -10;
disp(a.Value)
8-36
Property Class and Size Validation
a = uint8.empty;
a(1) = -10
a =
uint8
To avoid the potential for integer overflow, use a combination of validation functions that
restrict the value to the intended range instead of an integer class.
classdef IntProperty
properties
Value(1,1) {mustBeInteger, mustBeNonnegative,...
mustBeLessThan(Value,256)}
end
end
Because there is no conversion of the assigned value by the uint8 class, the validators
catch out of range values and throw an appropriate error.
a = IntProperty;
a.Value = -10;
MATLAB defines a default value implicitly if you do not specify a default value in the class
definition. This table shows how size and class determine the implicit default value of
MATLAB classes.
8-37
8 Properties — Storing Class Data
To determine the implicit default value for nonzero and explicit size specifications,
MATLAB calls the default class constructor and builds an array of the specified size using
the instance returned by the constructor call. If the class does not support a default
constructor (that is, a constructor called with no arguments), then MATLAB throws an
error when instantiating the class containing the validation.
If the specified size has any zero or unrestricted (:) dimensions, MATLAB creates a
default value that is an empty array with the unrestricted dimension set to zero.
See Also
Related Examples
• “Validate Property Values” on page 8-24
• “Property Validation Functions” on page 8-40
8-38
See Also
8-39
8 Properties — Storing Class Data
During the validation process, MATLAB passes the value to each validation function listed
in the class definition. MATLAB calls each function from left to right and throws the first
error encountered. The value passed to the validation functions is the result of any
conversion applied by the class and size specifications. For more information on class and
size validation, see “Property Class and Size Validation” on page 8-31.
For a list of MATLAB validation functions, see “MATLAB Validation Functions” on page 8-
43
MATLAB passes the potential property value to the validation function implicitly.
However, if the validation function requires input arguments in addition to the potential
property value, then you must include both the property and the additional arguments.
Additional arguments must be literal values and cannot reference variables. Literal values
are nonsymbolic representations, such as numbers and text.
8-40
Property Validation Functions
Pass the property as the first argument. Use the property name, but do not enclose the
name in quotation marks. This property definition restricts Prop to values greater than
10.
properties
Prop {mustBeGreaterThan(Prop,10)}
end
a =
Data: []
Interp: 'linear'
Because the Data property validation does not include a numeric class, there is no
conversion of the char vector to a numeric value. If you change the validation of the
8-41
8 Properties — Storing Class Data
Data property to specify the class as double, MATLAB converts the char vector to a
double array.
properties
Data double {mustBeNumeric, mustBeFinite}
end
The assignment to the char vector does not produce an error because MATLAB converts
the char vector to class double.
a.Data = 'cubic'
a =
For example, suppose that you define the InterpMethod enumeration class for the
Interp property validation.
classdef InterpMethod
enumeration
linear
8-42
Property Validation Functions
cubic
spline
end
end
classdef ValidatorFunction
properties
Data {mustBeNumeric, mustBeFinite}
Interp InterpMethod
end
end
a = ValidatorFunction;
a.Interp = 'cu'
a =
Data: []
Interp: cubic
8-43
8 Properties — Storing Class Data
8-44
Property Validation Functions
Creating your own validation function is useful when you want to provide specific
validation that is not available using the MATLAB validation functions. You can create
local functions within the class file or place the function on the MATLAB path to be
available for use in any class.
For example, the ImData class uses a local function to define a validator that restricts the
Data property to a specific range of numeric values.
classdef ImData
properties
Data {mustBeNumeric, mustBeInRange(Data,[0,255])} = 0
end
end
function mustBeInRange(a,b)
if any(a(:) < b(1)) || any(a(:) > b(2))
error(['Value assigned to Data property is not in range ',...
num2str(b(1)),'...',num2str(b(2))])
end
end
When you create an instance of the ImData class, MATLAB validates that the default
value is numeric, in the range 0...255, and not empty.
a = ImData
8-45
8 Properties — Storing Class Data
a =
Data: 0
Property assignment invokes the validators in left-to-right order. Assigning a char vector
to the Data property causes an error thrown by mustBeNumeric.
a.Data = 'red'
a.Data = -1
For example, suppose that you want your class to support the mustBeGreaterThan
validation function. Overload these MATLAB functions as methods in your class:
classdef SupportmBGT
properties
Prop(1,1) double {mustBeReal}
end
8-46
See Also
methods
function obj = SupportmBGT(data)
if nargin > 0
obj.Prop = data;
end
end
function tf = isreal(obj)
tf = true;
end
function tf = gt(obj1, obj2)
tf = [obj1(:).Prop] > obj2.Prop;
end
end
end
a = SupportmBGT(10);
b = SupportmBGT(12);
mustBeGreaterThan(a,b)
See Also
Related Examples
• “Validate Property Values” on page 8-24
• “Property Class and Size Validation” on page 8-31
8-47
8 Properties — Storing Class Data
You can determine what validation applies to a property by accessing the validation
metadata. Instances of the meta.Validation class provide the following information
about property validation.
For example, the ValidationExample class defines a property that must be an array of
doubles that is 1-by-any number of elements and must be a real number that is greater
than 10.
classdef ValidationExample
properties
Prop (1,:) double {mustBeReal, mustBeGreaterThan(Prop, 10)} = 200;
end
end
Access the meta.Validation object from the property's meta.property object. Get
the validation information from the meta.Validation object properties. Collection this
information into a cell array.
mc = ?ValidationExample;
mp = findobj(mc.PropertyList,'Name','Prop');
sz = mp.Validation.Size;
len = length(sz);
dim = cell(1:len);
for k = 1:len
switch class(sz(k))
case 'meta.FixedDimension'
8-48
See Also
dim{k} = sz(k).Length;
case 'meta.UnrestrictedDimension'
dim{k} = ':';
end
end
dim{end+1} = mp.Validation.Class.Name;
dim{end+1} = mp.Validation.ValidatorFunctions;
See Also
meta.Validation | meta.property
Related Examples
• “Validate Property Values” on page 8-24
• “Property Class and Size Validation” on page 8-31
• “Property Validation Functions” on page 8-40
8-49
8 Properties — Storing Class Data
In this section...
“Properties Provide Access to Class Data” on page 8-50
“Property Setter and Getter Methods” on page 8-51
“Set and Get Method Execution and Property Events” on page 8-53
“Access Methods and Properties Containing Arrays” on page 8-54
“Access Methods and Arrays of Objects” on page 8-54
“Modify Property Values with Access Methods” on page 8-54
Use property access methods to provide error checking or to implement side effects
resulting from property access. Examples of access methods include functions that update
other property values when setting the property or translate the format of a property
value before returning the value.
You can use property validation to restrict the size, class, and other aspects of property
values. For information on property validation, see “Validate Property Values” on page 8-
24.
Property access methods do add the overhead of a function call whenever accessing
property values. If performance-critical access to properties occurs inside methods of the
class, define private properties to store values. Use these values inside methods without
any error checking. For less frequent access from outside the class, define public
Dependent properties that use access methods for error checking.
For information on access methods used with Dependent properties, see “Set and Get
Methods for Dependent Properties” on page 8-62.
8-50
Property Access Methods
• Execute code before assigning property values to perform actions such as:
• Calculate the value of properties that do not store values (see “Calculate Data on
Demand” on page 3-23)
• Change the value of other properties
• Trigger events (see “Overview Events and Listeners” on page 11-2)
To control what code can access properties, see “Property Attributes” on page 8-9.
Note You cannot call property access methods directly. MATLAB calls these
methods when you access property values.
Property access methods execute automatically whenever you set or query the
corresponding property values from outside the access method. MATLAB does not call
access methods recursively. That is, MATLAB does not call the set method when setting
the property from within its set method. Similarly, MATLAB does not call the get method
when querying the property value from within its get method.
Obtain the function handle for the set and get access methods from the property
meta.property object. The meta.property SetMethod and GetMethod properties
contain the function handles that refer to these methods.
8-51
8 Properties — Storing Class Data
• For concrete properties (that is, properties that are not abstract)
• Within the class that defines the property (unless the property is abstract in that class,
in which case the concrete subclass must define the access method).
MATLAB has no default set or get property access methods. Therefore, if you do not
define property access methods, MATLAB software does not invoke any methods before
assigning or returning property values.
Once defined, only the set and get methods can set and query the actual property values.
See “When Set Method Is Called” on page 8-57 for information on cases where MATLAB
does not call property set methods.
Note Property set and get access methods are not equivalent to user-callable set and
get methods used to set and query property values from an instance of the class. See
“Implement Set/Get Interface for Properties” on page 7-28 for information on user-
callable set and get methods.
You can set and get property values only from within your property set or get access
method. You cannot call another function from the set or get method and attempt to
access the property value from that function.
For example, an anonymous function that calls another function to do the actual work
cannot access the property value. Similarly, an access function cannot call another
function to access the property value.
Access methods have special names that include the property name. Therefore,
get.PropertyName executes whenever PropertyName is referenced and
set.PropertyName executes whenever PropertyName is assigned a value.
Define property access methods in a methods block that specifies no attributes. You
cannot call these methods directly. MATLAB calls these methods when any code accesses
the properties.
Property access methods do not appear in the list of class methods returned by the
methods command and are not included in the meta.class object Methods property.
8-52
Property Access Methods
The property meta.property object contains function handles to the property set and
get methods. SetMethod contains a function handle to the set method. GetMethod
contains a function handle to the get method.
For example, if the class MyClass defines a get method for its Text property, you can
obtain a function handle to this function from the meta.class object:
mc = ?MyClass;
mp = findobj(mc.PropertyList,'Name','Text');
fh = mp.GetMethod;
The returned value, fh, contains a function handle to the get method defined for the
specified property name for the specified class.
If a class computes a property value (Dependent = true), then the behaviors of its set
events are like the get events:
If a property is not computed (Dependent = false, the default), then the assignment
statement with the set method generates the events:
8-53
8 Properties — Storing Class Data
• PreSet — Triggered before assigning the new property value within the set method
• PostSet — Triggered after assigning the new property value within the set method
For information about using property events, see “Create Property Listeners” on page 11-
40.
val = obj.PropName(n);
obj.PropName(n) = val;
MATLAB:
8-54
See Also
The property get methods applies a scale factor before returning its current value:
classdef Testpoint
properties
expectedResult = []
end
properties(Constant)
scalingFactor = 0.001
end
methods
function obj = set.expectedResult(obj,erIn)
if erIn >= 0 && erIn <= 100
erIn = erIn.*obj.scalingFactor;
obj.expectedResult = erIn;
else
obj.expectedResult = NaN;
end
end
function er = get.expectedResult(obj)
er = obj.expectedResult/obj.scalingFactor;
end
end
end
See Also
More About
• “Properties Containing Objects” on page 8-66
8-55
8 Properties — Storing Class Data
Note You cannot call property access methods directly. MATLAB calls these
methods when you access property values.
Property set methods have the following syntax, where PropertyName is the name of the
property.
methods
function obj = set.PropertyName(obj,value)
...
end
Value class set functions must return the modified object to the calling function. Handle
classes do not need to return the modified object.
8-56
Property Set Methods
methods
function set.PropertyName(obj,value)
...
end
Use default method attributes for property set methods. The methods block defining the
set method cannot specify attributes.
For an example of a property set method, see “Restrict Properties to Specific Values” on
page 3-21 .
• A value is assigned to a property from within its own property set method, to prevent
recursive calling of the set method. However, property assignments made from
functions called by a set method do call the set method.
• MATLAB assigns a default value to the property during initialization of an object
before calling object constructor functions.
8-57
8 Properties — Storing Class Data
• When MATLAB copies a value object (any object that is not a handle), MATLAB does
not call the set or get method when copying property values from one object to
another.
• Any assignment made to a property value that is the same as the current value when
the property’s AbortSet attribute is true. See “Assignment When Property Value Is
Unchanged” on page 11-44 for more information on this attribute.
Setting a property value in the constructor causes the property set method to be called.
For example, the PropertySetMethod class defines a property set method for the Prop1
property.
classdef PropertySetMethod
properties
Prop1 = "Default String"
end
methods
function obj = PropertySetMethod( str )
if nargin > 0
obj.Prop1 = str;
end
end
If you call the class constructor with no input arguments, MATLAB does not call the
set.Prop1 method.
>> o = PropertySetMethod
o =
8-58
See Also
Setting the property value in the constructor results in a call to the property set method.
o =
If you copy the object to another variable, MATLAB does not call the property set method
even though the right side object in the assignment uses a nondefault value for the
property:
a = o;
a.Prop1
a.Prop1
ans =
"New String"
See Also
Related Examples
• “Property Get Methods” on page 8-60
• “Property Access Methods” on page 8-20
• “Validate Property Values” on page 8-24
8-59
8 Properties — Storing Class Data
Note You cannot call property access methods directly. MATLAB calls these
methods when you access property values.
Property get methods have the following syntax, where PropertyName is the name of the
property. The function must return the property value.
methods
function value = get.PropertyName(obj)
...
end
8-60
See Also
classdef SquareArea
properties
Width
Height
end
properties (Dependent)
Area
end
methods
function a = get.Area(obj)
a = obj.Width * obj.Height;
end
end
end
Use the property set method to validate the property value. Validating the value when
setting a property ensures that the object is in a valid state. Use the property get method
only to return the value that the set method has validated.
• Getting a property value from within its own property get method, which prevents
recursive calling of the get method
• Copying a value object (that is, not derived from the handle class). Neither the set or
get method is called when copying property values from one object to another.
See Also
Related Examples
• “Set and Get Methods for Dependent Properties” on page 8-62
8-61
8 Properties — Storing Class Data
Dependent properties do not store data. The value of a dependent property depends on
some other value, such as the value of a nondependent property.
The values returned by dependent property get methods are not considered when testing
for object equality using isequal and isequaln.
To be able to set the value of a dependent property, the property must define a set access
method (set.PropertyName). The property set access method usually assigns the value
to another, nondependent property for storage of the value.
For example, the Account class returns a value for the dependent Balance property that
depends on the value of the Currency property. The get.Balance method queries the
Currency property before calculating a value for the Balance property.
MATLAB calls the get.Balance method when the Balance property is queried. You
cannot call get.Balance explicitly.
Here is a partial listing of the class showing a dependent property and its get method:
classdef Account
properties
Currency
DollarAmount
end
properties (Dependent)
Balance
end
...
methods
function value = get.Balance(obj)
c = obj.Currency;
8-62
Set and Get Methods for Dependent Properties
switch c
case 'E'
v = obj.DollarAmount / 1.1;
case 'P'
v = obj.DollarAmount / 1.5;
otherwise
v = obj.DollarAmount;
end
format bank
value = v;
end
end
end
The get method for the Prop property determines the value of that property and assigns
it to the object from within the method:
This get method calls a function or static method called calculateValue to calculate
the property value and returns value as a result. The property get method can take
whatever action is necessary within the method to produce the output value.
For an example of a property get method, see “Calculate Data on Demand” on page 3-23.
8-63
8 Properties — Storing Class Data
For example, suppose that you have a class that changes the name of a property from
OldPropName to NewPropName. You can continue to allow the use of the old name
without exposing it to new users. To support the old property name, define OldPropName
a dependent property with set and get methods:
properties
NewPropName
end
properties (Dependent, Hidden)
OldPropName
end
methods
function obj = set.OldPropName(obj,val)
obj.NewPropName = val;
end
function value = get.OldPropName(obj)
value = obj.NewPropName;
end
end
There is no memory wasted by storing both old and new property values. Code that
accesses OldPropName continues to work as expected. Setting the Hidden attribute of
OldPropName prevents new users from seeing the property.
Assignments made from property set methods cause the execution of any set methods
defined for properties being set. See “Calculate Data on Demand” on page 3-23 for an
example.
This example uses the MaxValue property to return a value that it calculates only when
queried. For this application, define the MaxValue property as dependent and private:
8-64
See Also
See Also
Related Examples
• “Property Attributes” on page 8-9
8-65
8 Properties — Storing Class Data
Note Evaluation of property default values occurs only when the value is first needed,
and only once when MATLAB first initializes the class. MATLAB does not reevaluate the
expression each time you create an instance of the class.
For more information on the evaluation of expressions that you assign as property default
values, see “When MATLAB Evaluates Expressions” on page 6-13.
• Handle object – you can set properties on handle objects contained in read-only
properties
• Value object – you cannot set properties on value object contained in read-only
properties.
Assignment Behavior
These classes illustrate the assignment behavior:
8-66
Properties Containing Objects
• ReadOnlyProps – class with two read-only properties. The class constructor assigns a
handle object of type HanClass to the PropHandle property and a value object of
type ValClass to the PropValue property.
• HanClass – handle class with public property
• ValClass – value class with public property
classdef ReadOnlyProps
properties(SetAccess = private)
PropHandle
PropValue
end
methods
function obj = ReadOnlyProps
obj.PropHandle = HanClass;
obj.PropValue = ValClass;
end
end
end
classdef ValClass
properties
Vprop
end
end
a =
Use the private PropHandle property to set the property of the HanClass object it
contains:
8-67
8 Properties — Storing Class Data
class(a.PropHandle.Hprop)
ans =
double
a.PropHandle.Hprop = 7;
Attempting to make an assignment to the value class object property is not allowed:
a.PropValue.Vprop = 11;
See Also
More About
• “Mutable and Immutable Properties” on page 8-22
8-68
Dynamic Properties — Adding Properties to an Instance
It is possible for more than one program to define dynamic properties on the same object.
In these cases, avoid name conflicts. Dynamic property names must be valid MATLAB
identifiers (see “Variable Names”) and cannot be the same name as a method of the class.
• Set and query the values of dynamic properties using dot notation. (See “Assign Data
to the Dynamic Property” on page 8-71.)
• MATLAB saves and loads dynamic properties when you save and load the objects to
which they are attached. (See “Dynamic Properties and ConstructOnLoad” on page 8-
80.)
• Define attributes for dynamic property. (See “Set Dynamic Property Attributes” on
page 8-70).
• By default, dynamic properties have their NonCopyable attribute set to true. If you
copy an object containing a dynamic property, the dynamic property is not copied.
(See “Objects with Dynamic Properties” on page 7-41)
• Add property set and get access methods. (See “Set and Get Methods for Dependent
Properties” on page 8-62.)
• Listen for dynamic property events. (See “Dynamic Property Events” on page 8-75.)
• Access dynamic property values from object arrays, with restricted syntax. (See
“Accessing Dynamic Properties in Arrays” on page 10-14.)
8-69
8 Properties — Storing Class Data
• The isequal function always returns false when comparing objects that have
dynamic properties, even if the properties have the same name and value. To compare
objects that contain dynamic properties, overload isequal for your class.
P = addprop(H,'PropertyName')
where:
H is an array of handles
PropertyName is the name of the dynamic property you are adding to each object
Use only valid names when naming dynamic properties (see “Variable Names”). In
addition, do not use names that:
To set property attributes, use the meta.DynamicProperty object associated with the
dynamic property. For example, if P is the object returned by addprop, this statement
sets the property’s Hidden attribute to true:
P.Hidden = true;
The property attributes Constant and Abstract have no meaning for dynamic
properties. Setting the value of these attributes to true has no effect.
8-70
Dynamic Properties — Adding Properties to an Instance
delete(P);
Suppose, you are using a predefined set of user interface widget classes (buttons, sliders,
check boxes, etc.). You want to store the location of each instance of the widget class.
Assume that the widget classes are not designed to store location data for your particular
layout scheme. You want to avoid creating a map or hash table to maintain this
information separately.
Create an instance of the button class, add a dynamic property, and set its value:
b1 = button([20 40 80 20]);
b1.addprop('myCoord');
b1.myCoord = [2,3];
Access the dynamic property just like any other property, but only on the object on which
you defined it:
b1.myCoord
ans =
2 3
8-71
8 Properties — Storing Class Data
Using nonpublic Access with dynamic properties is not recommended because these
properties belong to specific instances that are often created outside of class methods.
The Access attribute of a of dynamic property applies to the class of the instance that
contains the dynamic property. The dynamic property Access attribute does not
necessarily apply to the class whose method adds the dynamic property.
For example, if a base class method adds a dynamic property with private access to an
instance, the private access applies only to the class of the instance.
See Also
Related Examples
• “Set and Get Methods for Dynamic Properties” on page 8-73
• “Dynamic Property Events” on page 8-75
• “Dynamic Properties and ConstructOnLoad” on page 8-80
8-72
Set and Get Methods for Dynamic Properties
You can define property set access or get access methods for dynamic properties without
creating additional class methods. For general information on the use of access methods,
see “Property Access Methods” on page 8-50.
• Define a function that implements the operations you want to perform before the
property set or get occurs. These methods must have the following signatures:
mySet(obj,val) or val = myGet(obj)
• Obtain the dynamic property's corresponding meta.DynamicProperty object.
• Assign a function handle referencing your set or get property function to the
meta.DynamicProperty object's GetMethod or SetMethod property. This function
does not need to be a method of the class. You cannot use a naming scheme like
set.PropertyName. Instead, use any other valid function name.
Suppose that you want to create a property set function for the myCoord dynamic
property of the button class created in “Define Dynamic Properties” on page 8-70.
function set_myCoord(obj,val)
if ~(length(val) == 2)
error('myCoords require two values')
end
obj.myCoord = val;
end
Because button is a handle class, the property set function does not need to return the
object as an output argument.
To get the meta.DynamicProperty object, use the handle class findprop method:
8-73
8 Properties — Storing Class Data
mb1 = b1.findprop('myCoord');
mb1.SetMethod = @set_myCoord;
MATLAB calls the property set function whenever you set this property:
You can set and get the property values only from within your property access methods.
You cannot call another function from the set or get method, and then attempt to access
the property value from that function.
Reference or assignment to a property from within its set or get method does not invoke
the set or get method again. Therefore, if you use a handle to the same function for
multiple dynamic properties, that function is not invoked when accessing any of those
properties from within that function.
See Also
Related Examples
• “Dynamic Properties — Adding Properties to an Instance” on page 8-69
8-74
Dynamic Property Events
If you delete a dynamic property, and then create another dynamic property with the
same name, the listeners do not respond to events generated by the new property. A
listener defined for a dynamic property that has been deleted does not cause an error, but
the listener callback is never executed.
“Property-Set and Query Events” on page 11-17 provides more information on how to
define listeners for these events.
Dynamic-Property Events
To respond to the addition and removal of dynamic properties, attach listeners to objects
containing the dynamic properties. The dynamicprops class defines events for this
purpose:
8-75
8 Properties — Storing Class Data
These events have public listen access (ListenAccess attribute) and private notify
access (NotifyAccess attribute).
• Set the value of a hidden property to true when a property named SpecialProp is
added.
• Set the value of the hidden property to false when SpecialProp is removed.
Define a callback function that uses the EventName property of the event data to
determine if a property is added or removed. Obtain the name of the property from the
PropertyName property of the event data. If a dynamic property is named
SpecialProp, change the value of the hidden property.
function DyPropEvtCb(src,evt)
switch evt.EventName
case 'PropertyAdded'
8-76
Dynamic Property Events
switch evt.PropertyName
case 'SpecialProp'
% Take action based on the addition of this property
%...
%...
src.HiddenProp = true;
disp('SpecialProp added')
otherwise
% Other property added
% ...
disp([evt.PropertyName,' added'])
end
case 'PropertyRemoved'
switch evt.PropertyName
case 'SpecialProp'
% Take action based on the removal of this property
%...
%...
src.HiddenProp = false;
disp('SpecialProp removed')
otherwise
% Other property removed
% ...
disp([evt.PropertyName,' removed'])
end
end
end
dt = DynamTest;
lad = addlistener(dt,'PropertyAdded',@DyPropEvtCb);
lrm = addlistener(dt,'PropertyRemoved',@DyPropEvtCb);
ad = addprop(dt,'SpecialProp');
8-77
8 Properties — Storing Class Data
The addition of the dynamic property causes the listener to execute its callback function,
DyPropEvtCb. The callback function assigns a value of true to the HiddenProp
property.
dt.HiddenProp
ans =
Delete the meta.DynamicProperty object returned when adding the dynamic property
SpecialProp.
delete(ad)
SpecialProp removed
dt.HiddenProp
ans =
ad = findprop(dt,'SpecialProp');
8-78
See Also
See Also
Related Examples
• “Dynamic Properties — Adding Properties to an Instance” on page 8-69
8-79
8 Properties — Storing Class Data
If you create dynamic properties from the class constructor, you can cause a conflict if
you also set the class ConstructOnLoad attribute to true. Here is the sequence:
• A saved object saves the names and values of properties, including dynamic properties
• When loaded, a new object is created and all properties are restored to the values at
the time the object was saved
• Then, the ConstructOnLoad attribute causes a call to the class constructor, which
would create another dynamic property with the same name as the loaded property.
See “Save and Load Objects” on page 13-2 for more on the load sequence.
• MATLAB prevents a conflict by loading the saved dynamic property, and does not
execute addprop when calling the constructor.
If you use ConstructOnLoad, add dynamic properties from the class constructor, and
want the constructor to call addprop at load time, then set the dynamic property
Transient attribute to true. This setting prevents the property from being saved. For
example:
See Also
Related Examples
• “Dynamic Properties — Adding Properties to an Instance” on page 8-69
8-80
9
In this section...
“Class Methods” on page 9-2
“Examples and Syntax” on page 9-2
“Kinds of Methods” on page 9-3
“Method Naming” on page 9-4
Class Methods
Methods are functions that implement the operations performed on objects of a class.
Methods, along with other class members support the concept of encapsulation—class
instances contain data in properties and class methods operate on that data. This design
allows the internal workings of classes to be hidden from code outside of the class, and
thereby enabling the class implementation to change without affecting code that is
external to the class.
Methods have access to private members of their class including other methods and
properties. This encapsulation enables you to hide data and create special interfaces that
must be used to access the data stored in objects.
For sample code and syntax, see “Methods and Functions” on page 5-15
For a discussion of how to create classes that modify standard MATLAB behavior, see
“Methods That Modify Default Behavior” on page 17-2 .
For information on the use of @ and path directors and packages to organize your class
files, see “Class Files and Folders” on page 5-2
For the syntax to use when defining classes in more than one file, see “Methods in
Separate Files” on page 9-11
9-2
Methods in Class Design
Kinds of Methods
There are specialized kinds of methods that perform certain functions or behave in
particular ways:
• Ordinary methods are functions that act on one or more objects and return some new
object or some computed value. These methods are like ordinary MATLAB functions
that cannot modify input arguments. Ordinary methods enable classes to implement
arithmetic operators and computational functions. These methods require an object of
the class on which to operate. See “Ordinary Methods” on page 9-8.
• Constructor methods are specialized methods that create objects of the class. A
constructor method must have the same name as the class and typically initializes
property values with data obtained from input arguments. The class constructor
method must declare at least one output argument, which is the object being
constructed. The first output is always the object being constructed. See “Class
Constructor Methods” on page 9-21
• Destructor methods are called automatically when the object is destroyed, for example
if you call delete(object) or there are no longer any references to the object. See
“Handle Class Destructor” on page 7-16
• Property access methods enable a class to define code to execute whenever a property
value is queried or set. See “Property Access Methods” on page 8-50
• Static methods are functions that are associated with a class, but do not necessarily
operate on class objects. These methods do not require an instance of the class to be
referenced during invocation of the method, but typically perform operations in a way
specific to the class. See “Static Methods” on page 9-32
• Conversion methods are overloaded constructor methods from other classes that
enable your class to convert its own objects to the class of the overloaded constructor.
For example, if your class implements a double method, then this method is called
instead of the double class constructor to convert your class object to a MATLAB
double object. See “Object Converters” on page 17-12 for more information.
• Abstract methods define a class that cannot be instantiated itself, but serves as a way
to define a common interface used by numerous subclasses. Classes that contain
abstract methods are often referred to as interfaces. See “Abstract Classes” on page
12-91 for more information and examples.
9-3
9 Methods — Defining Class Operations
Method Naming
The name of a function that implements a method can contain dots (for example,
set.PropertyName) only if the method is one of the following:
• Property set/get access method (see “Property Access Methods” on page 8-50)
• Conversion method that converts to a package-qualified class, which requires the use
of the package name (see “Packages Create Namespaces” on page 6-25)
You cannot define property access or conversion methods as local functions, nested
functions, or separately in their own files. Class constructors and package-scoped
functions must use the unqualified name in the function definition; do not include the
package name in the function definition statement.
See Also
Related Examples
• “Method Attributes” on page 9-5
• “Rules for Naming to Avoid Conflicts” on page 9-36
9-4
Method Attributes
Method Attributes
In this section...
“Purpose of Method Attributes” on page 9-5
“Specifying Method Attributes” on page 9-5
“Table of Method Attributes” on page 9-5
For more information on attribute syntax, see “Attribute Specification” on page 5-22.
Attribute values apply to all methods defined within the methods...end code block that
specifies the nondefault values.
9-5
9 Methods — Defining Class Operations
Method Attributes
9-6
Method Attributes
9-7
9 Methods — Defining Class Operations
Ordinary Methods
In this section...
“Ordinary Methods Operate on Objects” on page 9-8
“Methods Inside classdef Block” on page 9-8
“Method Files” on page 9-9
classdef ClassName
methods (AttributeName = value,...)
function methodName(obj,args)
% method code
...
end
...
end % end of method block
...
end
Method attributes apply only to that particular methods block, which is terminated by the
end statement.
Note Nonstatic methods must include an explicit object variable as a function argument.
The MATLAB language does not support an implicit reference in the method function
definition.
9-8
Ordinary Methods
Example of a Method
The addData method adds a value to the Data property of MyData objects. The
mustBeNumeric function restricts the value of the Data property to numeric values. The
property has a default value of 0.
The addData method returns the modified object, which you can reassign to the same
variable.
classdef MyData
properties
Data {mustBeNumeric} = 0
end
methods
function obj = addData(obj,val)
if isnumeric(val)
newData = obj.Data + val;
obj.Data = newData;
end
end
end
end
a = MyData;
a = addData(a,75)
a =
Data: 75
Calling Methods
Either of the following statements is correct syntax for calling a method, where obj is an
object of the class defining the methodName method:
obj.methodName(arg)
methodName(obj,arg)
Method Files
You can define methods:
9-9
9 Methods — Defining Class Operations
For more information on class folders, see “Folders Containing Class Definitions” on page
6-17.
See Also
More About
• “Methods in Separate Files” on page 9-11
• “Determining Which Method Is Invoked” on page 9-15
• “Operator Overloading” on page 17-47
9-10
Methods in Separate Files
Class Folders
You can define class methods in files that are separate from the class definition file, with
certain exceptions (see “Methods You Must Define in the classdef File” on page 9-13).
To use multiple files for class definitions, put the class files in a folder having a name
beginning with the @ character followed by the name of the class (this is called a class
folder). Ensure that the parent folder of the class folder is on the MATLAB path.
If the class folder is contained in one or more package folders, then the top-level package
folder must be on the MATLAB path.
For example, the folder @MyClass must contain the file MyClass.m (which contains the
classdef block) and can contain other methods and function defined in files having a .m
extension. The folder @MyClass can contain a number of files:
@MyClass/MyClass.m
@MyClass/subsref.m
@MyClass/subsasgn.m
@MyClass/horzcat.m
@MyClass/vertcat.m
@MyClass/myFunc.m
Note MATLAB treats any.m file in the class folder as a method of the class. The base
name of the file must be a valid MATLAB function name. Valid function names begin with
an alphabetic character, and can contain letters, numbers, or underscores.
9-11
9 Methods — Defining Class Operations
It is a good practice to declare the function signature in the classdef file in a methods
block:
classdef MyClass
methods
output = myFunc(obj,arg1,arg2)
end
...
end
For example, the following code shows a method with Access set to private in the
methods block. The method implementation resides in a separate file. Do not include the
function or end keywords in the methods block. Include only the function signature
showing input and output arguments.
classdef MyClass
methods (Access = private)
output = myFunc(obj,arg1,arg2)
end
end
9-12
Methods in Separate Files
To create a static method, set the method Static attribute to true and list the function
signature in a static methods block in the classdef file. Include the input and output
arguments with the function name. For example:
classdef MyClass
...
methods (Static)
output = staticFunc1(arg1,arg2)
staticFunc2
end
...
end
Define the functions in separate files using the same function signature. For example, in
the file @MyClass/staticFunc1.m:
and in @Myclass/staticFunc2.m:
function staticFunc2
...
end
• Class constructor
• All functions that use dots in their names, including:
• Converter methods that must use the package name as part of the class name
because the class is contained in packages
9-13
9 Methods — Defining Class Operations
Related Information
See Also
Related Examples
• “Folders Containing Class Definitions” on page 6-17
9-14
Method Invocation
Method Invocation
In this section...
“Determining Which Method Is Invoked” on page 9-15
“Referencing Names with Expressions—Dynamic Reference” on page 9-17
“Controlling Access to Methods” on page 9-19
“Invoking Superclass Methods in Subclass Methods” on page 9-19
“Invoking Built-In Functions” on page 9-20
• The class of the leftmost argument whose class is not specified as inferior to any other
argument's class is chosen as the dominant class and its method is invoked.
• If this class does not define the called method, then a function with that name that is
on the MATLAB path is invoked.
• If no such function exists, MATLAB issues an error indicating that the dominant class
does not define the named method.
Dominant Argument
Classes defined using the classdef syntax take precedence over these MATLAB classes:
double, single, int64, uint64, int32, uint32, int16, uint16, int8, uint8, char,
string, logical, cell, struct, and function_handle.
In general, when two or more objects are part of the argument list, the method defined
for the class of the left-most object is invoked. However, user-defined classes can specify
the relative dominance of specific classes. For information, see “Class Precedence” on
page 6-23.
9-15
9 Methods — Defining Class Operations
For example, suppose classA defines classB as inferior and suppose that both classes
define a method called combine.
combine(B,A)
actually calls the combine method of classA because A is the dominant argument.
MATLAB classes support both function and dot notation syntax for calling methods. For
example, if setColor is a method of the class of object X, then calling setColor with
function notation would be:
X = setColor(X,'red');
X = X.setColor('red')
However, in certain cases, the results for dot notation can differ with respect to how
MATLAB dispatching works:
• If there is an overloaded subsref, it is invoked whenever using dot notation. That is,
the statement is first tested to see if it is subscripted assignment.
• If there is no overloaded subsref, then setColor must be a method of X. An
ordinary function or a class constructor is never called using this notation.
• Only the argument X (to the left of the dot) is used for dispatching. No other
arguments, even if dominant, are considered. Therefore dot notation can call only
methods of X; methods of other argument are never called.
Here is an example of a case where dot and function notation can give different results.
Suppose that you have the following classes:
• classA defines a method called methodA that requires an object of classB as one of
its arguments
• classB defines classA as inferior to classB
9-16
Method Invocation
The methodA method is defined with two input arguments, one of which is an object of
classB:
classdef classA
methods
function methodA(obj,obj_classB)
...
end
end
classB does not define a method with the same name as methodA. Therefore, the
following syntax causes MATLAB to search the path for a function with the same name as
methodA because the second argument is an object of a dominant class. If a function with
that name exists on the path, then MATLAB attempts to call this function instead of the
method of classA and most likely returns a syntax error.
obj = classA(...);
methodA(obj,obj_classB)
Dot notation is stricter in its behavior. For example, this call to methodA:
obj = classA(...);
obj.methodA(obj_classB)
obj.(expression)
The expression must evaluate to a char vector that is the name of a property or a
method. For example, the following statements are equivalent:
obj.Property1
obj.('Property1')
9-17
9 Methods — Defining Class Operations
In this case, obj is an object of a class that defines a property called Property1.
Therefore, you can pass a char variable in the parentheses to reference to property:
propName = 'Property1';
obj.(propName)
You can call a method and pass input arguments to the method using another set of
parentheses:
obj.(expression)(arg1,arg2,...)
Using this notation, you can make dynamic references to properties and methods in the
same way you can create dynamic references to the fields of structs.
As an example, suppose that an object has methods corresponding to each day of the
week. These methods have the same names as the days of the week (Monday, Tuesday,
and so on). Also, the methods take as char vector input arguments, the current day of the
month (the date). Now suppose that you write a function in which you want to call the
correct method for the current day.
obj.(datestr(date,'dddd'))(datestr(date,'dd'))
The expression datestr(date,'dddd') returns the current day as a char vector. For
example:
datestr(date,'dddd')
ans =
Tuesday
The expression datestr(date,'dd') returns the current date as a char vector. For
example:
datestr(date,'dd')
ans =
11
Therefore, the expression using dot-parentheses (called on Tuesday the 11th) is the
equivalent of:
9-18
Method Invocation
obj.Tuesday('11')
• public — Any code having access to an object of the class can access this method
(the default).
• private — Restricts method access to the defining class, excluding subclasses.
Subclasses do not inherit private methods.
• protected — Restricts method access to the defining class and subclasses derived
from the defining class. Subclasses inherit this method.
• Access list — Restricts method access to classes in access list. For more information,
see “Class Members Access” on page 12-28
Local and nested functions inside the method files have the same access as the method.
Local functions inside a class-definition file have private access to the class defined in the
same file.
The syntax to call a superclass method in a subclass class uses the @ symbol:
MethodName@SuperclassName
For example, the following disp method is defined for a Stock class that is derived from
an Asset class. The method first calls the Asset class disp method, passing the Stock
object so that the Asset components of the Stock object can be displayed. After the
Asset disp method returns, the Stock disp method displays the two Stock properties:
classdef Stock < Asset
methods
function disp(s)
9-19
9 Methods — Defining Class Operations
Limitations of Use
The following restrictions apply to calling superclass methods. You can use this notation
only within:
• A method having the same name as the superclass method you are invoking
• A class that is a subclass of the superclass whose method you are invoking
See Also
More About
• “Object Precedence in Method Invocation” on page 9-47
• “Class Precedence” on page 6-23
9-20
Class Constructor Methods
All MATLAB classes have a default constructor method. This method returns an object of
the class that is created with no input arguments. A class can define a constructor method
that overrides the default constructor. An explicitly defined constructor can accept input
arguments, initialize property values, call other methods, and perform other operations
necessary to create objects of the class.
9-21
9 Methods — Defining Class Operations
%% Pre Initialization %%
% Any code not using output argument (obj)
if nargin == 0
% Provide values for superclass constructor
% and initialize other inputs
a = someDefaultValue;
args{1} = someDefaultValue;
args{2} = someDefaultValue;
else
% When nargin ~= 0, assign to cell array,
% which is passed to supclass constructor
args{1} = b;
args{2} = c;
end
compvalue = myClass.staticMethod(a);
%% Object Initialization %%
% Call superclass constructor before accessing object
% You cannot conditionalize this statement
obj = obj@BaseClass1(args{:});
%% Post Initialization %%
% Any code, including access to object
obj.classMethod(arg);
obj.ComputedValue = compvalue;
...
end
...
end
9-22
Class Constructor Methods
...
end
Call the constructor like any function, passing arguments and returning an object of the
class.
obj = ConstructorDesign(a,b,c);
Default Constructor
If a class does not define a constructor, MATLAB supplies a default constructor that takes
no arguments and returns a scalar object whose properties are initialized to property
default values. The default constructor supplied by MATLAB also calls all superclass
constructors with no arguments or with any argument passed to the default subclass
constructor.
When a subclass does not define a constructor, the default constructor passes its inputs to
the direct superclass constructor. This behavior is useful when there is no need for a
subclass to define a constructor, but the superclass constructor does require input
arguments.
9-23
9 Methods — Defining Class Operations
• Input arguments
• Initializing object state, such as property values, for each instance of the class
• Calling the superclass constructor with values that are determined by the subclass
constructor
Related Information
For information specific to constructing enumerations, see “Enumeration Class
Constructor Calling Sequence” on page 14-8.
For information on creating object arrays in the constructor, see “Construct Object
Arrays” on page 10-2.
If the class being created is a subclass, MATLAB calls the constructor of each superclass
class to initialize the object. Implicit calls to the superclass constructor are made with no
arguments. If superclass constructors require arguments, call them from the subclass
constructor explicitly. See “Control Sequence of Constructor Calls” on page 12-14
For example, the following constructor can assign the value of the object's property A as
the first statement because the object obj has already been assigned to an instance of
MyClass.
You can call other class methods from the constructor because the object is already
initialized.
9-24
Class Constructor Methods
The constructor also creates an object whose properties have their default values —
either empty ([]) or the default value specified in the property definition block.
For example, this constructor operates on the input arguments to assign the value of the
Value property.
When initializing the object, for example, by assigning values to properties, use the name
of the output argument to refer to the object within the constructor. For example, in the
following code the output argument is obj and the object is reference as obj:
For more information on defining default property values, see “Property Default Values”
on page 8-18.
• When loading objects into the workspace, if the class ConstructOnLoad attribute is
set to true, the load function calls the class constructor with no arguments.
• When creating or expanding an object array such that not all elements are given
specific values, the class constructor is called with no arguments to fill in unspecified
elements (for example, x(10,1) = MyClass(a,b,c);). In this case, the constructor
is called once with no arguments to populate the empty array elements (x(1:9,1))
with copies of this one object.
If there are no input arguments, the constructor creates an object using only default
properties values. A good practice is to add a check for zero arguments to the class
constructor to prevent an error if either of these two cases occur:
9-25
9 Methods — Defining Class Operations
Subclass Constructors
Subclass constructors can call superclass constructors explicitly to pass arguments to the
superclass constructor. The subclass constructor must specify these arguments in the call
to the superclass constructor and must use the constructor output argument to form the
call. Here is the syntax:
classdef MyClass < SuperClass
methods
function obj = MyClass(a,b,c,d)
obj@SuperClass(a,b);
...
end
end
end
The subclass constructor must make all calls to superclass constructors before any other
references to the object (obj). This restriction includes assigning property values or
calling ordinary class methods. Also, a subclass constructor can call a superclass
constructor only once.
If the classdef does not specify the class as a superclass, the constructor cannot call a
superclass constructor with this syntax. That is, subclass constructor can call only direct
superclass constructors listed in the classdef line.
classdef MyClass < SuperClass1 & SuperClass2
MATLAB calls any uncalled constructors in the left-to-right order in which they are
specified in the classdef line. MATLAB passes no arguments with these calls.
9-26
Class Constructor Methods
Calls to superclass constructors must be unconditional. There can be only one call for a
given superclass. Initialize the superclass portion of the object by calling the superclass
constructors before using the object (for example, to assign property values or call class
methods).
To call a superclass constructor with different arguments that depend on some condition,
build a cell array of arguments and provide one call to the constructor.
For example, the Cube class constructor calls the superclass Shape constructor using
default values when the Cube constructor is called with no arguments. If the Cube
constructor is called with four input arguments, then pass upvector and viewangle to
the superclass constructor:
classdef Cube < Shape
properties
SideLength = 0
Color = [0 0 0]
end
methods
function cubeObj = Cube(length,color,upvector,viewangle)
% Assemble superclass constructor arguments
if nargin == 0
super_args{1} = [0 0 1];
super_args{2} = 10;
elseif nargin == 4
super_args{1} = upvector;
super_args{2} = viewangle;
else
error('Wrong number of input arguments')
end
9-27
9 Methods — Defining Class Operations
end
end
To support a syntax that calls the superclass constructor with no arguments, provide this
syntax explicitly.
Suppose in the case of the Cube class example, all property values in the Shape
superclass and the Cube subclass have default values specified in the class definitions.
Then you can create an instance of Cube without specifying any arguments for the
superclass or subclass constructors.
Here is how you can implement this behavior in the Cube constructor:
methods
function cubeObj = Cube(length,color,upvector,viewangle)
% Assemble superclass constructor arguments
if nargin == 0
super_args = {};
elseif nargin == 4
super_args{1} = upvector;
super_args{2} = viewangle;
else
error('Wrong number of input arguments')
end
More on Subclasses
9-28
Class Constructor Methods
For example, the following class constructor requires one input argument (a datetime
object), which the constructor assigns to the CurrentDate property.
classdef BaseClassWithConstr
properties
CurrentDate datetime
end
methods
function obj = BaseClassWithConstr(dt)
obj.CurrentDate = dt;
end
end
end
Suppose that you create a subclass of BaseClassWithConstr, but your subclass does
not require an explicit constructor method.
obj = SubclassDefaultConstr(datetime);
For information on subclass constructors, see “Subclass Constructors” on page 9-26 and
“Default Constructor” on page 9-23.
9-29
9 Methods — Defining Class Operations
MATLAB calls the delete method on the object, the delete methods for any objects
contained in properties, and the delete methods for any initialized base classes.
Depending on when the error occurs, MATLAB can call the class destructor before the
object is fully constructed. Therefore class delete methods must be able to operate on
partially constructed objects that might not have values for all properties. For more
information, see “Support Destruction of Partially Constructed Objects” on page 7-18.
For information on how objects are destroyed, see “Handle Class Destructor” on page 7-
16.
Use nargout to determine if the constructor has been called with an output argument.
For example, the class constructor for the MyApp class clears the object variable, obj, if
called with no output assigned:
classdef MyApp
methods
function obj = MyApp
...
if nargout == 0
clear obj
end
end
...
end
end
When a class constructor does not return an object, MATLAB does not trigger the
meta.class InstanceCreated event.
9-30
See Also
See Also
Related Examples
• “Simplifying the Interface with a Constructor” on page 3-22
• “Subclass Constructor Implementation” on page 12-11
9-31
9 Methods — Defining Class Operations
Static Methods
In this section...
“What Are Static Methods” on page 9-32
“Why Define Static Methods” on page 9-32
“Defining Static Methods” on page 9-32
“Calling Static Methods” on page 9-33
“Inheriting Static Methods” on page 9-33
Suppose that a class needs a value for pi calculated to particular tolerances. The class
could define its own version of the built-in pi function for use within the class. This
approach maintains the encapsulation of the class's internal workings, but does not
require an instance of the class to return a value.
classdef MyClass
...
methods(Static)
function p = pi(tol)
[n d] = rat(pi,tol);
p = n/d;
9-32
See Also
end
end
end
classname.staticMethodName(args,...)
Calling the pi method of MyClass in the previous section would require this statement:
value = MyClass.pi(.001);
You can also invoke static methods using an instance of the class, like any method:
obj = MyClass;
value = obj.pi(.001);
See Also
Related Examples
• “Implementing the AccountManager Class” on page 3-15
9-33
9 Methods — Defining Class Operations
You can also modify default behaviors by implementing specific functions that control
these behaviors. For more information on functions that modify default behaviors, see
“Methods That Modify Default Behavior” on page 17-2.
MATLAB uses the dominant argument to determine which version of a function to call. If
the dominant argument is an object, then MATLAB calls the method defined by the
object's class, if one exists.
In cases where a class defines a method with the same name as a global function, the
class's implementation of the function is said to overload the original global
implementation.
• Define a method with the same name as the function you want to overload.
• Ensure that the method argument list accepts an object of the class, which MATLAB
uses to determine which version to call.
9-34
Overload Functions in Class Definitions
• Perform the necessary steps in the method to implement the function. For example,
access the object properties to manipulate data.
Generally, the method that overloads a function produces results similar to the MATLAB
function. However, there are no requirements regarding how you implement the
overloading method. The overloading method does not need to match the signature of the
overloaded function.
Note MATLAB does not support overloading functions using different signatures for the
same function name.
It is convenient to overload commonly used functions to work with objects of your class.
For example, suppose that a class defines a property that stores data that you often
graph. The MyData class overrides the bar function and adds a title to the graph:
classdef MyData
properties
Data
end
methods
function obj = MyData(d)
if nargin > 0
obj.Data = d;
end
end
function bar(obj)
y = obj.Data;
bar(y,'EdgeColor','r');
title('My Data Graph')
end
end
end
The MyData bar method has the same name as the MATLAB bar function. However, the
MyData bar method requires a MyData object as input. Because the method is
specialized for MyData objects, it can extract the data from the Data property and create
a specialized graph.
9-35
9 Methods — Defining Class Operations
y = rand(1,10);
md = MyData(y);
bar(md)
md.bar
Classes designed to implement new MATLAB data types typically define certain
operators, such as addition, subtraction, or equality.
For example, standard MATLAB addition (+) cannot add two polynomials because this
operation is not defined by simple addition. However, a polynomial class can define its
own plus method that the MATLAB language calls to perform addition of polynomial
objects when you use the + symbol:
p1 + p2
• You can reuse names that you have used in unrelated classes.
• You can reuse names in subclasses if the member does not have public or protected
access. These names then refer to entirely different methods, properties, and events
without affecting the superclass definitions
• Within a class, all names exist in the same name space and must be unique. A class
cannot define two methods with the same name and a class cannot define a local
function with the same name as a method.
• The name of a static method is considered without its class prefix. Thus, a static
method name without its class prefix cannot match the name of any other method.
9-36
See Also
See Also
Related Examples
• “Dominant Argument in Overloaded Graphics Functions” on page 9-49
• “Class Support for Array-Creation Functions” on page 9-38
9-37
9 Methods — Defining Class Operations
Class support for any of the array-creation functions enables you to develop code that you
can share with built-in and user-defined data types. For example, the class of the variable
x in the following code can be a built-in type during initial development, and then be
replaced by a user-defined class that transparently overloads zeros:
cls = class(x);
zArray = zeros(m,n,cls);
• Class name syntax — Specify class name that determines the type of array elements.
• Prototype object syntax — Provide a prototype object that the function uses to
determine the type and other characteristics of the array elements.
For example:
zArray = zeros(2,3,'uint8');
p = uint8([1 3 5 ; 2 4 6]);
zArray = zeros(2,3,'like',p);
After adding support for these functions to a class named MyClass, you can use similar
syntax with that class:
zArray = zeros(2,3,'MyClass');
9-38
Class Support for Array-Creation Functions
p = MyClass(...);
zArray = zeros(size(p),'like',p);
MATLAB uses these arguments to dispatch to the appropriate method in your class.
Array-Creation Functions
ones
zeros
eye
nan (lowercase)
inf
true
false
cast
rand
randn
randi
To create an array of objects with specific property values or if the constructor needs
other inputs, use the prototype object to provide this information.
Classes can support both the class name and the prototype object syntax.
You can implement a class name syntax with the true and false functions even though
these functions do not support that syntax by default.
9-39
9 Methods — Defining Class Operations
If your class implements a class name syntax, but does not implement a prototype object
syntax for a particular function, you can still call both syntaxes. For example, if you
implement a static zeros method only, you can call:
zeros(...,'like',MyClass(...))
In the case in which you call the prototype object syntax, MATLAB first searches for a
method named zerosLike. If MATLAB cannot find this method, it calls for the zeros
static method.
This feature is useful if you only need the class name to create the array. You do not need
to implement both methods to support the complete array-creation function syntax. When
you implement only the class name syntax, a call to a prototype object syntax is the same
as the call to the class name syntax.
zeros(...,'ClassName')
As a Static method:
methods (Static)
function z = zeros(varargin)
...
end
end
• Implement the prototype object syntax:
zeros(...,'like',obj)
As a Hidden method with the char vector 'Like' appended to the name.
methods (Hidden)
function z = zerosLike(obj,varargin)
9-40
Class Support for Array-Creation Functions
...
end
end
The special support for array-creation functions results from the interpretation of the
syntax.
The input arguments to an array-creation function can include the dimensions of the
array the function returns and possibly other arguments. In general, there are three cases
that your methods must support:
When the array-creation function calls your class method, it passes the input arguments,
excluding the class name or the literal 'like' and the object variable to your method.
You can implement your methods with these signatures:
9-41
9 Methods — Defining Class Operations
Sample Class
The Color class represents a color in a specific color space, such as, RGB, HSV, and so on.
The discussions in “Class Name Method Implementations” on page 9-42 and “Prototype
Object Method Implementation” on page 9-44 use this class as a basis for the overloaded
method implementations.
classdef Color
properties
ColorValues = [0,0,0]
ColorSpace = 'RGB'
end
methods
function obj = Color(cSpace,values)
if nargin > 0
obj.ColorSpace = cSpace;
obj.ColorValues = values;
end
end
end
end
The zeros function strips the final ClassName char vector and uses it to form the call to
the static method in the Color class. The arguments passed to the static method are the
array dimension arguments.
Here is an implementation of a zeros method for the Color class. This implementation:
classdef Color
...
methods (Static)
9-42
Class Support for Array-Creation Functions
function z = zeros(varargin)
if (nargin == 0)
% For zeros('Color')
z = Color;
elseif any([varargin{:}] <= 0)
% For zeros with any dimension <= 0
z = Color.empty(varargin{:});
else
% For zeros(m,n,...,'Color')
% Use property default values
z = repmat(Color,varargin{:});
end
end
end
end
The zeros method uses default values for the ColorValues property because these
values are appropriate for this application. An implementation of a ones method can set
the ColorValues property to [1,1,1], for example.
Suppose that you want to overload the randi function to achieve the following objectives:
classdef Color
...
methods (Static)
function r = randi(varargin)
if (nargin == 0)
% For randi('ClassName')
r = Color('RGB',randi(255,[1,3]));
elseif any([varargin{2:end}] <= 0)
% For randi with any dimension <= 0
r = Color.empty(varargin{2:end});
else
% For randi(max,m,n,...,'ClassName')
if numel([varargin{:}]) < 2
error('Not enough input arguments')
end
9-43
9 Methods — Defining Class Operations
dims = [varargin{2:end}];
r = zeros(dims,'Color');
for k = 1:prod(dims)
r(k) = Color('RGB',randi(varargin{1},[1,3]));
end
end
end
end
end
The objective of a method that returns an array of objects that are “like a prototype
object” depends on the requirements of the class. For the Color class, the zeroLike
method creates objects that have the ColorSpace property value of the prototype object,
but the ColorValues are all zero.
9-44
Class Support for Array-Creation Functions
z = repmat(obj,varargin{:});
end
end
end
end
Note In actual practice, the Color class requires error checking, color space
conversions, and so on. This overly simplified version illustrates the implementation of the
overloaded methods.
classdef Color
properties
ColorValues = [0,0,0]
ColorSpace = 'RGB'
end
methods
function obj = Color(cSpace,values)
if nargin > 0
obj.ColorSpace = cSpace;
obj.ColorValues = values;
end
end
end
methods (Static)
function z = zeros(varargin)
if (nargin == 0)
% For zeros('ClassName')
z = Color;
elseif any([varargin{:}] <= 0)
% For zeros with any dimension <= 0
z = Color.empty(varargin{:});
else
% For zeros(m,n,...,'ClassName')
% Use property default values
z = repmat(Color,varargin{:});
end
end
function r = randi(varargin)
if (nargin == 0)
% For randi('ClassName')
r = Color('RGB',randi(255,[1,3]));
elseif any([varargin{2:end}] <= 0)
% For randi with any dimension <= 0
r = Color.empty(varargin{2:end});
else
% For randi(max,m,n,...,'ClassName')
if numel([varargin{:}]) < 2
9-45
9 Methods — Defining Class Operations
See Also
Related Examples
• “Construct Object Arrays” on page 10-2
9-46
Object Precedence in Method Invocation
Object Precedence
Establishing an object precedence enables MATLAB to determine which of possibly many
versions of an operator or function to call in a given situation.
objectA + objectB
Ordinarily, objects have equal precedence and the method associated with the leftmost
object is called. However, there are two exceptions:
• Classes defined with the classdef syntax have precedence over these MATLAB
classes:
double, single, int64, uint64, int32, uint32, int16, uint16, int8, uint8,
char, string, logical, cell, struct, and function_handle.
• Classes defined with the classdef syntax can specify their relative precedence with
respect to other classes using the InferiorClasses attribute.
Consider the example in “Representing Polynomials with Classes” on page 19-2. The
DocPolynom class defines a plus method that enables the addition of DocPolynom
objects. Given the object p:
p = DocPolynom([1 0 -2 -5])
p =
x^3-2*x-5
the expression:
1 + p
ans =
x^3-2*x-4
9-47
9 Methods — Defining Class Operations
calls the DocPolynom plus method (which converts the double, 1, to a DocPolynom
object and then implements the addition of two polynomials). The DocPolynom class has
precedence over the built-in double class.
Defining Precedence
You can specify the relative precedence of classes defined with the classdef syntax by
listing inferior classes in a class attribute. The InferiorClasses property places a class
below other classes in the precedence hierarchy. Define the InferiorClasses property
in the classdef statement:
classdef (InferiorClasses = {?class1,?class2}) myClass
This attribute establishes a relative priority of the class being defined with the order of
the classes listed.
objectA + objectB
See Also
More About
• “Dominant Argument in Overloaded Graphics Functions” on page 9-49
• “Class Precedence” on page 6-23
9-48
Dominant Argument in Overloaded Graphics Functions
Dominant Argument
When evaluating expression involving objects of more than one class, MATLAB uses the
dominant argument to determine which method or function to call.
9-49
9 Methods — Defining Class Operations
MATLAB calls the plot method in both cases because the TemperatureData class
specifies the matlab.graphics.axis.Axes as inferior.
classdef (InferiorClasses = {?matlab.graphics.axis.Axes}) TemperatureData
properties
Time
Temperature
end
methods
function obj = TemperatureData(x,y)
obj.Time = x;
obj.Temperature = y;
end
function plot(varargin)
if nargin == 1
obj = varargin{1};
plot(obj.Time,obj.Temperature)
elseif nargin == 2
ax = varargin{1};
obj = varargin{2};
plot(ax,obj.Time,obj.Temperature)
elseif nargin > 2
ax = varargin{1};
obj = varargin{2};
plot(ax,obj.Time,obj.Temperature,varargin{3:end})
end
datetick('x')
xlabel('Time')
ylabel('Temperature')
end
end
end
The following call to plot dispatches to the TemperatureData plot method, not the
built-in plot function, because the TemperatureData object is dominant over the axes
object.
x = 1:10;
y = rand(1,10)*100;
ax = axes;
td = TemperatureData(x,y);
plot(ax,td)
9-50
See Also
Suppose the TemperatureData class that is described in the previous section defines a
set method. If you attempt to assign an object of the TemperatureData class to the
UserData property of an axes object:
td = TemperatureData(x,y);
set(gca,'UserData',td)
The results is a call to the TemperatureData set method. MATLAB does not call the
built-in set function.
To support the use of a set function with inferior classes, implement a set method in
your class that calls the built-in set function when the first argument is an object of the
inferior class.
function set(varargin)
if isa(varargin{1},'matlab.graphics.axis.Axes')
builtin('set',varargin{:})
else
...
end
See Also
More About
• “Object Precedence in Method Invocation” on page 9-47
9-51
9 Methods — Defining Class Operations
Where your class defines a method called sliderCallback and obj is an instance of
your class.
To use a static method as a callback, specify the callback property as a function handle
that includes the class name that is required to refer to a static method:
uicontrol('Style','slider','Callback',@MyClass.sliderCallback)
9-52
Class Methods for Graphics Callbacks
For static methods, the required class name ensures MATLAB dispatches to the method of
the specified class:
@MyClass.methodName
Define the static callback method with two input arguments — the event source handle
and the event data
function methodName(src,eventData)
If you want to pass arguments to your callback in addition to the source and event data
arguments passed by MATLAB, you can use an anonymous function. The basic syntax for
an anonymous function that you assign to the graphic object's Callback property
includes the object as the first argument:
@(src,event)callbackMethod(object,src,eventData,arg1,...argn)
function methodName(obj,src,eventData,varargin)
...
end
The SeaLevelSlider class creates a slider that varies the color limits of an indexed
image to give the illusion of varying the sea level.
Class Definition
• The class properties store figure and axes handles and the calculated color limits.
• The class constructor creates the graphics objects and assigns the slider callback.
9-53
9 Methods — Defining Class Operations
• The callback function for the slider accepts the three required arguments — a class
instance, the handle of the event source, and the event data. The event data argument
is empty and not used.
• The uicontrol callback uses dot notation to reference the callback
method: ...'Callback',@obj.sliderCallback.
methods
function obj = SeaLevelSlider(x,map)
obj.Figure = figure('Colormap',map,...
'Position',[100,100,560,580],...
'Resize','off');
obj.Axes = axes('DataAspectRatio',[1,1,1],...
'XLimMode','manual','YLimMode','manual',...
'Parent',obj.Figure);
image(x,'CDataMapping','scaled',...
'Parent',obj.Axes);
obj.CLimit = get(obj.Axes,'CLim');
uicontrol('Style','slider',...
'Parent',obj.Figure,...
'Max',obj.CLimit(2)-10,...
'Min',obj.CLimit(1)-1,...
'Value',obj.CLimit(1),...
'Units','normalized',...
'Position',[0.9286,0.1724,0.0357,0.6897],...
'SliderStep',[0.003,0.005],...
'Callback',@obj.sliderCallback);
end
function sliderCallback(obj,src,~)
minVal = get(src,'Value');
maxVal = obj.CLimit(2);
obj.Axes.CLim = [minVal maxVal];
end
end
end
9-54
Class Methods for Graphics Callbacks
The class uses the cape image that is included with the MATLAB product. To obtain the
image data, use the load command:
load cape X map
After loading the data, create a SeaLevelSlider object for the image:
slaObj = SeaLevelSlider(X,map);
Move the slider to change the color mapping and visualize a rise in sea level.
50
100
150
200
250
300
350
50 100 150 200 250 300 350
9-55
9 Methods — Defining Class Operations
See Also
More About
• “Listener Callback Syntax” on page 11-30
9-56
10
Object Arrays
For example, the ObjectArray class creates an object array that is the same size as the
input array. Then it initializes the Value property of each object to the corresponding
input array value.
classdef ObjectArray
properties
Value
end
methods
function obj = ObjectArray(F)
if nargin ~= 0
m = size(F,1);
n = size(F,2);
obj(m,n) = obj;
for i = 1:m
for j = 1:n
obj(i,j).Value = F(i,j);
end
end
end
end
end
end
To preallocate the object array, assign the last element of the array first. MATLAB fills the
first to penultimate array elements with the ObjectArray object.
After preallocating the array, assign each object Value property to the corresponding
value in the input array F. To use the class:
10-2
Construct Object Arrays
F = magic(5);
A = ObjectArray(F);
whos
objArray(ix).PropName
• Reference all values of the same property in an object array using dot notation.
MATLAB returns a comma-separated list of property values.
objArray.PropName
• To assign the comma-separated list to a variable, enclose the right-side expression in
brackets:
values = [objArray.PropName]
classdef ObjProp
properties
RegProp
end
methods
function obj = ObjProp
obj.RegProp = randi(100);
end
end
end
10-3
10 Object Arrays
for k = 1:5
objArray(k) = ObjProp;
end
Access the RegProp property of the second element of the object array using array
indexing:
objArray(2).RegProp
ans =
91
propValues = [objArray.RegProp]
propValues =
82 91 13 92 64
Use standard indexing operations to access the values of the numeric array. For more
information on numeric arrays, see “Matrices and Arrays”.
See Also
Related Examples
• “Initialize Object Arrays” on page 10-5
• “Initialize Arrays of Handle Objects” on page 10-11
• “Class Constructor Methods” on page 9-21
10-4
Initialize Object Arrays
Calls to Constructor
During the creation of object arrays, MATLAB can call the class constructor with no
arguments, even if the constructor does not build an object array. For example, suppose
that you define the following class:
classdef SimpleValue
properties
Value
end
methods
function obj = SimpleValue(v)
obj.Value = v;
end
end
end
This error occurs because MATLAB calls the constructor with no arguments to initialize
elements 1 through 6 in the array.
Your class must support the no input argument constructor syntax. A simple solution is to
test nargin and let the case when nargin == 0 execute no code, but not error:
classdef SimpleValue
properties
Value
end
methods
function obj = SimpleValue(v)
10-5
10 Object Arrays
if nargin > 0
obj.Value = v;
end
end
end
end
Using the revised class definition, the previous array assignment statement executes
without error:
a(1,7) = SimpleValue(7)
a =
Value
The object assigned to array element a(1,7) uses the input argument passed to the
constructor as the value assigned to the property:
a(1,7)
ans =
SimpleValue with properties:
Value: 7
MATLAB created the objects contained in elements a(1,1:6) with no input argument.
The default value for properties empty []. For example:
a(1,1)
ans =
SimpleValue with properties:
Value: []
MATLAB calls the SimpleValue constructor once and copies the returned object to each
element of the array.
10-6
See Also
See Also
Related Examples
• “Initialize Arrays of Handle Objects” on page 10-11
10-7
10 Object Arrays
Empty Arrays
In this section...
“Creating Empty Arrays” on page 10-8
“Assigning Values to an Empty Array” on page 10-8
ary =
Value
10-8
Empty Arrays
every other array element. Once you assign a nonempty object to an array, all array
elements must be nonempty objects.
For example, using the SimpleValue defined in the “Initialize Object Arrays” on page 10-
5 section, create an empty array:
ary = SimpleValue.empty(5,0);
class(ary)
ans =
SimpleValue
ary(1)
ary(5).Value = 7;
ary(5).Value
ans =
ary(1).Value
ans =
[]
MATLAB populates array elements one through five with SimpleValue objects created
by calling the class constructor with no arguments. Then MATLAB assigns the property
value 7 to the object at ary(5).
10-9
10 Object Arrays
See Also
Related Examples
• “Initialize Arrays of Handle Objects” on page 10-11
10-10
Initialize Arrays of Handle Objects
Consider what happens when MATLAB initialize an array created by assigning to the last
element in the array. (The last element is the one with the highest index values). Suppose
the value of the RandNumb property of the InitHandleArray object assigned to the
element A(4,5) is 59:
A(4,5) = InitHandleArray;
A(4,5).RandNumb
ans =
59
The element in the index location A(4,5) is an instance of the InitHandleArray class.
The default object used for element A(1,1) is also an instance of the InitHandleArray
class, but its RandNumb property is set to a different random number.
10-11
10 Object Arrays
To fill in the preceding array elements, MATLAB calls the class constructor to create a
single object. MATLAB copies this object to all the remaining array elements. Calling the
constructor to create the default object resulted in another call to the randi function,
which returns a new random number:
A(1,1).RandNumb
ans =
10
A(2,2).RandNumb
ans =
10
A(2,3).RandNumb
ans =
10
When initializing an object array, MATLAB assigns a copy of a single object to the empty
elements in the array. MATLAB gives each object a unique handle so that later you can
assign different property values to each object. The objects are not equivalent:
A(1,1) == A(2,2)
ans =
That is, the handle A(1,1) does not refer to the same object as A(2,2). The creation of
an array with a statement such as:
A(4,5) = InitHandleArray;
results in two calls to the class constructor. The first creates the object for array element
A(4,5). The second creates a default object that MATLAB copies to all remaining empty
array elements.
10-12
Initialize Arrays of Handle Objects
Related Information
For information on array manipulation, see “Multidimensional Arrays”
See “Initialize Properties to Unique Values” on page 8-19 for information on assigning
values to properties.
See “Object Array Indexing” on page 17-15 for information on implementing subsasgn
methods for your class.
10-13
10 Object Arrays
You can add dynamic properties to objects of the ObjectArrayDynamic class. Create an
object array and add dynamic properties to each member of the array. Define elements 1
and 2 as ObjectArrayDynamic objects:
a(1) = ObjectArrayDynamic;
a(2) = ObjectArrayDynamic;
ans =
ans =
85
However, MATLAB returns an error if you try to access the dynamic properties of all array
elements using this syntax.
10-14
Accessing Dynamic Properties in Arrays
a.DynoProp
a(1).DynoProp
ans =
a(2).DynoProp
ans =
For information about classes that can define dynamic properties, see “Dynamic
Properties — Adding Properties to an Instance” on page 8-69 .
10-15
10 Object Arrays
In this section...
“Class Conversion Mechanism” on page 10-16
“Concatenation” on page 10-16
“Subscripted Assignment” on page 10-17
To perform the conversion, MATLAB attempts to call a converter method defined by the
class to be converted. A converter method has the same name as the destination class.
For example, if a class defines a method named double, this method converts an object
of the class to an object of class double.
If no converter exists, MATLAB passes the object to be converted to the constructor of the
destination class.
Both concatenation and subscripted assignment can cause MATLAB to apply this class
conversion mechanism. The conversion can be successful or can result in an error if the
conversion is not possible.
Concatenation
In concatenation operations, the dominant object determines the class of the resulting
array. MATLAB determines the dominant object as follows:
For example, in the statement C = [A,B], if A is the dominant object, MATLAB attempts
to convert B to the class of A.
10-16
See Also
Subscripted Assignment
In subscripted assignment, the left side of the assignment statement defines the class of
the array. If you assign array elements when the right side is a different class than the left
side, MATLAB attempts to convert to the class of the left side.
A = ClassA;
B = ClassB;
A(2) = B;
MATLAB first looks for a converter method defined by the class of the source object B.
This converter method must have the name ClassA. The subscripted assignment is
effectively a call to the converter defined by ClassB:
If no converter method exists, MATLAB passes the source object to the destination class
constructor:
See Also
Related Examples
• “Valid Combinations of Unlike Classes”
• “Concatenating Objects of Different Classes” on page 10-18
• “Object Converters” on page 17-12
10-17
10 Object Arrays
In this section...
“Basic Knowledge” on page 10-18
“MATLAB Concatenation Rules” on page 10-18
“Concatenating Objects” on page 10-19
“Calling the Dominant-Class Constructor” on page 10-19
“Converter Methods” on page 10-21
Basic Knowledge
The material presented in this section builds on an understanding of the information
presented in the following sections.
It is possible for the dominant class to define horzcat, vertcat, or cat methods that
modify the default concatenation process.
10-18
Concatenating Objects of Different Classes
Note MATLAB does not convert objects to a common superclass unless those objects are
part of a heterogeneous hierarchy. For more information, see “Designing Heterogeneous
Class Hierarchies” on page 10-24.
Concatenating Objects
Concatenation combines objects into arrays:
ary = [obj1,obj2,obj3,...,objn];
ary = [obj1;obj2;obj3;...;objn];
The class of the arrays is the same as the class of the objects being concatenated.
Concatenating objects of different classes is possible if MATLAB can convert objects to
the dominant class. MATLAB attempts to convert unlike objects by:
If conversion of the inferior object is successful, MATLAB returns an array that is of the
dominant class. If conversion is not possible, MATLAB returns an error.
If the constructor simply assigns this argument to a property, the result is an object of the
dominant class with an object of an inferior class stored in a property. If this assignment
is not a desired result, then ensure that class constructors include adequate error
checking.
10-19
10 Object Arrays
For example, consider the class ColorClass and two subclasses, RGBColor and
HSVColor:
classdef ColorClass
properties
Color
end
end
The class RGBColor inherits the Color property from ColorClass. RGBColor stores a
color value defined as a three-element vector of red, green, and blue (RGB) values. The
constructor does not restrict the value of the input argument. It assigns this value directly
to the Color property.
The class HSVColor also inherits the Color property from ColorClass. HSVColor
stores a color value defined as a three-element vector of hue, saturation, brightness value
(HSV) values.
Create an instance of each class and concatenate them into an array. The RGBColor
object is dominant because it is the leftmost object and neither class defines a dominance
relationship:
10-20
Concatenating Objects of Different Classes
ary = [crgb,chsv];
class(ary)
ans =
RGBColor
You can combine these objects into an array because MATLAB can pass the inferior object
of class HSVColor to the constructor of the dominant class. However, notice that the
Color property of the second RGBColor object in the array actually contains an
HSVColor object, not an RGB color specification:
ary(2).Color
ans =
Color: [0 1 1]
Converter Methods
If your class design requires object conversion, implement converter methods for this
purpose.
The ColorClass class defines converter methods for RGBColor and HSVColor objects:
classdef ColorClass
properties
Color
end
methods
function rgbObj = RGBColor(obj)
if isa(obj,'HSVColor')
rgbObj = RGBColor(hsv2rgb(obj.Color));
end
end
10-21
10 Object Arrays
Create an array of RGBColor and HSVColor objects with the revised superclass:
crgb = RGBColor([1 0 0]);
chsv = HSVColor([0 1 1]);
ary = [crgb,chsv];
class(ary)
ans =
RGBColor
MATLAB calls the converter method for the HSVColor object, which it inherits from the
superclass. The second array element is now an RGBColor object with an RGB color
specification assigned to the Color property:
ary(2)
ans =
Color: [1 0 0]
ary(2).Color
ans =
1 0 0
If the leftmost object is of class HSVColor, the array ary is also of class HSVColor, and
MATLAB converts the Color property data to HSV color specification.
ary = [chsv crgb]
ary =
1x2 HSVColor
10-22
See Also
Properties:
Color
ary(2).Color
ans =
0 1 1
Defining a converter method in the superclass and adding better argument checking in
the subclass constructors produces more predicable results. Here is the RGBColor class
constructor with argument checking:
Your applications can require additional error checking and other coding techniques. The
classes in these examples are designed only to demonstrate concepts.
See Also
More About
• “Implicit Class Conversion” on page 10-16
• “Object Converters” on page 17-12
• “Hierarchies of Classes — Concepts” on page 12-2
10-23
10 Object Arrays
In this section...
“Creating Classes That Support Heterogeneous Arrays” on page 10-24
“MATLAB Arrays” on page 10-24
“Heterogeneous Hierarchies” on page 10-25
“Heterogeneous Arrays” on page 10-25
“Heterogeneous Array Concepts” on page 10-26
“Nature of Heterogeneous Arrays” on page 10-26
“Unsupported Hierarchies” on page 10-29
“Default Object” on page 10-31
“Conversion During Assignment and Concatenation” on page 10-32
“Empty Arrays of Heterogeneous Abstract Classes” on page 10-32
For an example that uses heterogeneous arrays, see “A Class Hierarchy for
Heterogeneous Arrays” on page 20-2.
MATLAB Arrays
MATLAB determines the class of an array by the class of the objects contained in the
array. MATLAB is unlike some languages in which you define an array of object pointers
or references. In these other languages, the type of the array is different from the type of
an object in the array. You can access the elements of the array and dispatch to methods
on those elements, but you cannot call an object method on the whole array, as you can in
MATLAB.
10-24
Designing Heterogeneous Class Hierarchies
Object arrays in MATLAB are homogeneous in class. Because of this homogeneity, you can
perform operations on whole arrays, such as multiplying numeric matrices. You can form
heterogeneous array by defining a hierarchy of classes that derive from a common
superclass. Cell arrays provide option for an array type that can hold different kinds of
unrelated objects.
Heterogeneous Hierarchies
You can form arrays of objects that are subclasses of a common superclass when these
classes are part of a heterogeneous hierarchy. A MATLAB heterogeneous class hierarchy:
For example, in the following diagram, Shape is the root of the heterogeneous hierarchy.
Heterogeneous Arrays
A heterogeneous array is an array of objects that differ in their specific class, but all
objects derive from or are instances of a common superclass. The common superclass
forms the root of the hierarchy of classes that you can combine into heterogeneous
arrays.
10-25
10 Object Arrays
• Create arrays of objects that are of different classes, but part of a related hierarchy.
• Call methods of the most specific common superclass on the array as a whole
• Access properties of the most specific common superclass using dot notation with the
array
• Use common operators that are supported for object arrays
• Support array indexing (scalar or nonscalar) that returns arrays of the most specific
class
• Array class
• Property access
• Method invocation
10-26
Designing Heterogeneous Class Hierarchies
The class of a heterogeneous array is that of the most specific superclass shared by the
objects of the array.
If the following conditions are true, the concatenation and subscripted assignment
operations return a heterogeneous array:
• The objects on the right side of the assignment statement are of different classes
• All objects on the right side of the assignment statement derive from a common
subclass of matlab.mixin.Heterogeneous
For example, form an array by concatenating objects of these classes. The class of a1 is
ClassA:
a1 = [SpecificA,SpecificB];
class(a1)
10-27
10 Object Arrays
ans =
ClassA
a2 = [SpecificA,SpecificB,SpecificC];
class(a2)
ans =
RootSuperclass
If you assigned an object of the class SpecificC to array a1 using indexing, the class of
a1 becomes RootSuperclass:
a1(3) = SpecificC;
class(a1)
ans =
RootSuperclass
If the array contains objects of only one class, then the array is not heterogeneous. For
example, the class of a is SpecificA.
a = [SpecificA,SpecificA];
class(a)
ans =
SpecificA
Property Access
Access array properties with dot notation when the class of the array defines the
properties. The class of the array is the most specific common superclass, which ensures
all objects inherit the same properties.
a1 = [SpecificA,SpecificB];
a1.Prop1
10-28
Designing Heterogeneous Class Hierarchies
Referring to Prop1 using dot notation returns the value of Prop1 for each object in the
array.
Method Invocation
To invoke a method on a heterogeneous array, the class of the array must define or inherit
the method as Sealed. For example, suppose RootSuperclass defines a Sealed
method called superMethod.
a2 = [SpecificA,SpecificB,SpecificC];
a2.superMethod
Sealing the method (so that it cannot be overridden in a subclass) ensures that the same
method definition exists for all elements of the array. Calling that method on a single
element of the array invokes the same method implementation as calling the method on
the whole array.
Unsupported Hierarchies
Heterogeneous hierarchies cannot have ambiguities when obtaining default objects,
determining the class of the array, and converting class objects to other types. Members
of the hierarchy can derive from only one root superclass (that is, from only one direct
subclass of matlab.mixin.Heterogeneous).
10-29
10 Object Arrays
The next diagram shows two separate heterogeneous hierarchies. ClassA has only one
root superclass (called OtherBaseClass). The heterogeneous hierarchy is no longer
ambiguous:
10-30
Designing Heterogeneous Class Hierarchies
Default Object
A default object is the object returned by calling the class constructor with no arguments.
MATLAB uses default objects in these situations:
• Indexed assignment creates an array with gaps in array elements. For example, assign
the first element of array h to index 5:
h(5) = ClassA(arg1,arg2);
10-31
10 Object Arrays
Heterogeneous hierarchies enable you to define the default object for that hierarchy. The
matlab.mixin.Heterogeneous class provides a default implementation of a method
called getDefaultScalarElement. This method returns an instance of the root class of
the heterogeneous hierarchy, unless the root superclass is abstract.
If the root superclass is abstract or is not appropriate for a default object, override the
getDefaultScalarElement method. Implement the getDefaultScalarElement
override in the root superclass, which derives directly from
matlab.mixin.Heterogeneous.
getDefaultScalarElement must return a scalar object that is derived from the root
superclass. For specific information on how to implement this method, see
getDefaultScalarElement.
To support the formation of heterogeneous arrays using objects that are not part of the
heterogeneous hierarchy, implement a convertObject method in the root superclass.
The convertObject method must convert the nonmember object to a valid member of
the heterogeneous hierarchy.
ary = RootSuperclass.empty;
10-32
See Also
See Also
Related Examples
• “A Class Hierarchy for Heterogeneous Arrays” on page 20-2
• “Handle-Compatible Classes and Heterogeneous Arrays” on page 12-48
10-33
10 Object Arrays
When assigning to object arrays, MATLAB uses the default object to fill in unassigned
array elements. In a heterogeneous hierarchy, the default object can be the superclass
10-34
Heterogeneous Array Constructors
that is called by the subclass constructor. Therefore, building an array in the superclass
constructor can create a heterogeneous array.
In this code, the superclass constructor creates one object for each element in the input
argument, arg:
method
function obj = SuperClass(arg)
...
n = numel(arg);
obj = repelem(obj,1,n);
for k = 1:n
obj(k).SuperProp = arg(k);
end
...
end
end
The subclass constructor calls the superclass constructor to pass the required argument
array, a:
method
function obj = SubClass(a)
obj = obj@SuperClass(a);
for k = 1:numel(a)
obj(k).SubProp = a(k);
end
end
end
10-35
10 Object Arrays
Sample Implementation
The following class hierarchy defines a subclass that builds object arrays in its
constructor. The root superclass of the hierarchy initializes the superclass part of the
objects in the array.
This class hierarchy represents members of an engineering team. The classes in the
hierarchy include:
10-36
Heterogeneous Array Constructors
The TeamMembers class is the root of the heterogeneous hierarchy and is a concrete
class. Before assigning values to the Name and PhoneX properties, the constructor
initializes an array of subclass (ProjectEngineer) objects.
The ProjectEngineer constructor provides the obj argument for the call to repelem
with this statement:
obj = obj@TeamMembers(varargin{1:2});
The ProjectEngineer class represents one type of team member. This class supports
array inputs and returns an array of objects.
classdef ProjectEngineer < TeamMembers
% Inputs: {Name}, [PhoneX], {Rate}
properties
Rate
end
methods
function obj = ProjectEngineer(varargin)
obj = obj@TeamMembers(varargin{1:2});
for k = 1:numel(varargin{1})
obj(k).Rate = varargin{3}{k};
10-37
10 Object Arrays
end
end
end
end
The ProjectEngineer class requires a cell array of names, a numeric array of phone
extensions, and a cell array of billing rates for each engineer in the team.
nm = {'Fred','Nancy','Claudette'};
px = [8112,8113,8114];
rt = {'C2','B1','A2'};
tm = ProjectEngineer(nm,px,rt)
tm =
Rate
Name
PhoneX
Potential Error
The TeamMembers constructor initializes the object array with this statement:
obj = repelem(obj,1,n);
Without this statement, the TeamMembers constructor would create default objects to fill
in array elements in the for loop. The resulting heterogeneous array would be of the
class of the common superclass (TeamMembers in this case). If the superclass returns this
heterogeneous array to the subclass constructor, it is a violation of the rule that class
constructors must preserve the class of the returned object.
10-38
See Also
See Also
More About
• “Designing Heterogeneous Class Hierarchies” on page 10-24
10-39
11
For more information, see “Event and Listener Concepts” on page 11-14.
11-2
Overview Events and Listeners
• Listener callback functions must define at least two input arguments — the event
source object handle and the event data (See “Listener Callback Syntax” on page 11-
30 for more information).
• Modify the data passed to each listener callback by subclassing the
event.EventData class.
Predefined Events
MATLAB Defines events for listening to property sets and queries. For more information,
see “Listen for Changes to Property Values” on page 11-40.
11-3
11 Events — Sending and Responding to Messages
function anyMethod(obj)
...
notify(obj,'EventName');
end
end
end
Any function or method can trigger the event for a specific instance of the class defining
the event. For example, the triggerEvent method calls notify to trigger the
StateChange event:
classdef MyClass < handle
events
StateChange
end
methods
function triggerEvent(obj)
notify(obj,'StateChange')
end
end
end
Create Listener
Define a listener using the handle class handle.addlisteneror handle.listener
method. Pass a function handle for the listener callback function using one of these
syntaxes:
11-4
See Also
• SourceOfEvent — An object of the class that defines the event. The event is
triggered on this object.
• EventName — The name of the event defined in the class events code block.
• @listenerCallback — a function handle referencing the function that executes in
response to the event.
function lh = createListener(src)
lh = addlistener(src,'StateChange',@handleStateChange)
end
Define the callback function for the listener. The callback function must accept as the first
two arguments the event source object and an event data object:
function handleStateChange(src,eventData)
...
end
See Also
Related Examples
• “Listener Lifecycle” on page 11-28
• “Implement Property Set Listener” on page 11-11
11-5
11 Events — Sending and Responding to Messages
In this section...
“Class Event Data Requirements” on page 11-6
“Define and Trigger Event” on page 11-6
“Define Event Data” on page 11-7
“Create Listener for Overflow Event” on page 11-8
11-6
Define Custom Event Data
11-7
11 Events — Sending and Responding to Messages
The function setupSEC instantiates the SimpleEventClass class and adds a listener to
the object. In this example, the listener callback function displays information that is
contained in the eventData argument (which is a SpecialEventDataClass object).
sec = setupSEC;
sec.Prop1 = 5;
sec.Prop1 = 15; % listener triggers callback
See Also
Related Examples
• “Observe Changes to Property Values” on page 11-9
11-8
Observe Changes to Property Values
The PropLis class uses an ordinary method (attachListener) to add the listener for
the ObservedProp property. If the PropLis class defines a constructor, the constructor
can contain the call to addlistener.
The listener callback is a static method (propChange). MATLAB passes two arguments
when calling this function:
These arguments provide information about the property and the event.
11-9
11 Events — Sending and Responding to Messages
Use the PropLis class by creating an instance and calling its attachListener method:
plObj = PropLis;
plObj.ObservedProp
ans =
plObj.attachListener
plObj.ObservedProp = 2;
See Also
event.proplistener | handle.addlistener | handle.listener
Related Examples
• “Listener Lifecycle” on page 11-28
• “Implement Property Set Listener” on page 11-11
11-10
Implement Property Set Listener
The push button's callback is a class method (named pressed). When the push button is
activated, the following sequence occurs:
1 MATLAB executes the pressed method, which graphs a new set of data and
increments the ResultNumber property.
2 Attempting to set the value of the ResultNumber property triggers the PreSet
event, which executes the listener callback before setting the property value.
3 The listener callback uses the event data to obtain the handle of the callback object
(an instance of the PushButton class), which then provides the handle of the axes
object that is stored in its AxHandle property.
4 The listener callback updates the axes Title property, after the callback completes
execution, MATLAB sets the ResultsNumber property to its new value.
11-11
11 Events — Sending and Responding to Messages
end
methods
function buttonObj = PushButton
myFig = figure;
buttonObj.AxHandle = axes('Parent',myFig);
uicontrol('Parent',myFig,...
'Style','pushbutton',...
'String','Plot Data',...
'Callback',@(src,evnt)pressed(buttonObj));
addlistener(buttonObj,'ResultNumber','PreSet',...
@PushButton.updateTitle);
end
end
methods
function pressed(obj)
scatter(obj.AxHandle,randn(1,20),randn(1,20),'p')
obj.ResultNumber = obj.ResultNumber + 1;
end
end
methods (Static)
function updateTitle(~,eventData)
h = eventData.AffectedObject;
set(get(h.AxHandle,'Title'),'String',['Result Number: ',...
num2str(h.ResultNumber)])
end
end
end
The scatter graph looks similar to this graph after three push-button clicks.
buttonObj = PushButton;
11-12
See Also
See Also
Related Examples
• “Listen for Changes to Property Values” on page 11-40
11-13
11 Events — Sending and Responding to Messages
Basically, any activity that you can detect programmatically can generate an event and
communicate information to other objects.
MATLAB classes define a process that communicates the occurrence of events to other
objects that respond to the events. The event model works this way:
• A handle class declares a name used to represent an event. “Name Events” on page
11-22
• After creating an object of the event-declaring class, attach listener to that object.
“Control Listener Lifecycle” on page 11-28
• A call to the handle class notify method broadcasts a notice of the event to listeners.
The class user determines when to trigger the event. “Trigger Events” on page 11-23
• Listeners execute a callback function when notified that the event has occurred.
“Specifying Listener Callbacks” on page 11-30
• You can bind listeners to the lifecycle of the object that defines the event, or limit
listeners to the existence and scope of the listener object. “Control Listener Lifecycle”
on page 11-28
11-14
Event and Listener Concepts
BankAccount
1. The withdraw method is called.
Properties
AccountNumber
if AccountBalance <= 0
AccountBalance
notify(obj,’InsufficientFunds’);
end Methods
deposit
withdraw
Events
InsufficientFunds
2. The notify method
triggers an event, and a
message is broadcast.
InsufficientFunds
InsufficientFunds
Limitations
There are certain limitations to the use of events:
• The event source cannot guarantee that listeners exist when triggering the event.
• A listener cannot prevent other listeners from being notified that the event occurred.
11-15
11 Events — Sending and Responding to Messages
MATLAB passes the source object to the listener callback in the required event data
argument. Use the source object to access any of the object's public properties from
within your listener callback function.
“Comparison of Handle and Value Classes” on page 7-2 provides general information on
handle classes.
“Events and Listeners Syntax” on page 11-22 shows the syntax for defining a handle
class and events.
11-16
Event and Listener Concepts
• PreSet — Triggered just before the property value is set, before calling its set access
method
• PostSet — Triggered just after the property value is set
• PreGet — Triggered just before a property value query is serviced, before calling its
get access method
• PostGet — Triggered just after returning the property value to the query
These events are predefined and do not need to be listed in the class events block.
You can define your own property-change event data by subclassing the
event.EventData class. The event.PropertyEvent class is a sealed subclass of
event.EventData.
See “Listen for Changes to Property Values” on page 11-40 for a description of the
process for creating property listeners.
See “Property Access Methods” on page 8-50 for information on methods that control
access to property values.
Listeners
Listeners encapsulate the response to an event. Listener objects belong to the
event.listener class, which is a handle class that defines the following properties:
11-17
11 Events — Sending and Responding to Messages
• Source — Handle or array of handles of the object that generated the event
• EventName — Name of the event
• Callback — Function to execute when an enabled listener receives event notification
• Enabled — Callback function executes only when Enabled is true. See “Enable and
Disable Listeners” on page 11-63 for an example.
• Recursive — Allow listener to trigger the same event that caused execution of the
callback.
Recursive is false by default. If the callback triggers the event for which it is
defined as the callback, the listener cannot execute recursively. Therefore, set
Recursive to false if the callback must trigger its own event. Setting the
Recursive property to true can create a situation where infinite recursion reaches
the recursion limit and triggers an error.
11-18
Event Attributes
Event Attributes
To define other events in the same class definition that have different attribute settings,
create another events block.
11-19
11 Events — Sending and Responding to Messages
Event Attributes
11-20
See Also
See Also
Related Examples
• “Events and Listeners Syntax” on page 11-22
11-21
11 Events — Sending and Responding to Messages
In this section...
“Components to Implement” on page 11-22
“Name Events” on page 11-22
“Trigger Events” on page 11-23
“Listen to Events” on page 11-23
“Define Event-Specific Data” on page 11-26
Components to Implement
Implementation of events and listeners involves these components:
• Specification of the name of an event in a handle class — “Name Events” on page 11-
22.
• A function or method to trigger the event when the action occurs — “Trigger Events”
on page 11-23.
• Listener objects to execute callback functions in response to the triggered event —
“Listen to Events” on page 11-23.
• Default or custom event data that the event passes to the callback functions — “Define
Event-Specific Data” on page 11-26.
Name Events
Define an event by declaring an event name inside an events block. For example, this
class creates an event called ToggledState:
11-22
Events and Listeners Syntax
Trigger Events
The OnStateChange method calls notify to trigger the ToggledState event. Pass the
handle of the object that is the source of the event and the name of the event to notify.
Listen to Events
After the call to notify triggers an event, MATLAB broadcasts a message to all listeners
that are defined for that event and source object. There are two ways to create listeners:
using the handle class handle.addlistener or handle.listener method.
If you want the listener to persist beyond the normal variable scope, use addlistener to
create it. The event source object holds a reference to the listener object. When the event
source object is destroyed, MATLAB destroys the listener.
lh = addlistener(obj,'ToggleState',@RespondToToggle.handleEvnt);
11-23
11 Events — Sending and Responding to Messages
Use the handle.listener method to create listeners when you want to manage the
lifecycle of the listener and do not want a coupling between the event source and listener
object. MATLAB does not destroy listeners created with handle.listener when the
event source is destroyed. However, your code must keep the listener object handle in
scope when creating listeners using handle.listener.
lh = listener(obj,'EventName',@callbackFunction)
For example, this code uses the ToggleState event discussed previously:
lh = listener(obj,'ToggleState',@RespondToToggle.handleEvnt)
Callback Function
The listener callback function must accept a minimum of two arguments, which MATLAB
automatically passes to the callback. Here are the required arguments:
• The source of the event — that is, obj in the call to addlistener or
event.listener.
• An event.EventData object or a subclass of event.EventData, such as the
ToggleEventData object described in, “Define Event-Specific Data” on page 11-26.
Define the callback function to accept the source object and event data arguments.
function callbackFunction(src,evtdata)
...
end
For more information on callback syntax, see “Listener Callback Syntax” on page 11-30.
Define Listener
The RespondToToggle class defines objects that listen for the ToggleState event
defined in the ToggleButton class.
11-24
Events and Listeners Syntax
The class RespondToToggle adds the listener in its constructor. In this case, the class
defines the callback (handleEvnt) as a static method that accepts the two required
arguments:
• src — The handle of the object triggering the event (that is, a ToggleButton object)
• evtdata — An event.EventData object
tb = ToggleButton;
rtt = RespondToToggle(tb);
Whenever you call the OnStateChange method of the ToggleButton object, notify
triggers the event. For this example, the callback displays the value of the State
property:
tb.OnStateChange(true)
ToggledState is true
tb.OnStateChange(false)
ToggledState is false
Remove Listeners
Remove a listener object by calling delete on its handle. For example, if the class
RespondToToggle saved the listener handle as a property, you could delete the listener.
classdef RespondToToggle < handle
properties
11-25
11 Events — Sending and Responding to Messages
With this code change, you can remove the listener from an instance of the
RespondToToggle class. For example:
tb = ToggleButton;
rtt = RespondToToggle(tb);
The object rtt is listening for the ToggleState event triggered by object tb. To remove
the listener, call delete on the property containing the listener handle.
delete(rtt.ListenerHandle)
Note To save and load objects that are subclasses of event.EventData, such as
ToggleEventData, enable the ConstructOnLoad class attribute for the subclass.
11-26
See Also
NewState
end
methods
function data = ToggleEventData(newState)
data.NewState = newState;
end
end
end
The call to notify can use the ToggleEventData constructor to create the necessary
argument.
evtdata = ToggleEventData(newState);
notify(obj,'ToggledState',evtdata);
See Also
Related Examples
• “Listener Callback Syntax” on page 11-30
• “Listen for Changes to Property Values” on page 11-40
• “Techniques for Using Events and Listeners” on page 11-50
11-27
11 Events — Sending and Responding to Messages
Listener Lifecycle
In this section...
“Control Listener Lifecycle” on page 11-28
“Temporarily Deactivate Listeners” on page 11-28
“Permanently Delete Listeners” on page 11-28
For more information, see “Events and Listeners Syntax” on page 11-22.
11-28
See Also
delete(ListenerHandle)
Note Do not use the pack command with objects that define events and listeners. The
pack command causes the destruction of any listeners defined for the objects in the
workspace. For information on restoring listeners when saving objects, see “Restore
Listeners” on page 13-36.
See Also
Related Examples
• “Enable and Disable Listeners” on page 11-63
11-29
11 Events — Sending and Responding to Messages
11-30
Listener Callback Syntax
function callbackFunction(src,evnt)
...
end
If you do not use the event source and event data arguments, you can define the function
to ignore these inputs:
function callbackFunction(~,~)
...
end
For a method:
function callbackMethod(obj,src,evnt)
...
end
Here is the syntax for an ordinary method. The input arguments (arg1,...argn) must
be defined in the context in which you call addlistener.
lh = addlistener(src,'EventName',@(src,evnt)obj.callbackMethod(src,evnt,arg1,...argn)
function callbackMethod(src,evnt,varargin)
arg1 = varargin{1};
...
argn = varargin{n};
...
end
11-31
11 Events — Sending and Responding to Messages
The TestAnonyFcn class shows the use of an anonymous function with an additional
argument. The listener callback displays the inputs arguments to show how MATLAB calls
the callback method.
Create an object and trigger the event by calling the triggerEvt method:
obj = TestAnonyFcn;
obj.triggerEvnt;
Number of inputs: 4
Update
01-Jul-2008 17:19:36
See Also
Related Examples
• “Callback Execution” on page 11-34
11-32
See Also
11-33
11 Events — Sending and Responding to Messages
Callback Execution
In this section...
“When Callbacks Execute” on page 11-34
“Listener Order of Execution” on page 11-34
“Callbacks That Call notify” on page 11-34
“Manage Callback Errors” on page 11-35
“Invoke Functions from Function Handles” on page 11-35
Callback function execution continues until the function completes. If an error occurs in a
callback function, execution stops and control returns to the calling function. Then any
remaining listener callback functions execute.
The handle class handle.notify method calls all listeners before returning execution to
the function that called notify.
Listener callbacks can call notify to trigger events, including the same event that
invoked the callback. When a function calls notify, MATLAB sets the property values of
the event data object that is passed to callback functions. To ensure that these properties
11-34
Callback Execution
have appropriate values for subsequently called callbacks, always create a new event data
object if you call notify with custom event data.
For example, the UpdateEvt class defines an event named Update and a listener for that
event. The listener callback is the private method evtCb.
Private methods are normally accessible only by class methods. However, because the
function handle is created in a class method, notify can execute the callback from
outside of the class:
a = UpdateEvt;
a.notify('Update')
11-35
11 Events — Sending and Responding to Messages
See Also
Related Examples
• “Listener Callback Syntax” on page 11-30
11-36
Determine If Event Has Listeners
Note When called, event.hasListener must have NotifyAccess for the event. That
is, call event.hasListener in a context in which you can call notify for the event in
question.
Coding Patterns
• Conditionalize the creation of event data and the call to notify using
event.hasListener. For an object array a, determine if there are listeners before
creating event data and triggering the event:
if any(event.hasListener(a,'NameOfEvent'))
evt = MyCustomEventData(...);
notify(a,'NameOfEvent',evt)
end
11-37
11 Events — Sending and Responding to Messages
• Trigger events selectively using logical indexing with the values returned by
event.hasListener. Send event notifications only for array elements that have
listeners:
ind = event.hasListeners(a,'NameOfEvent');
notify(a(ind),'NameOfEvent',evt)
For example, in the following diagram, the class of a heterogeneous array formed with
objects of classes SpecificA, SpecificB, and SpecificC is RootSuperclass.
Therefore, event.hasListener can find listeners only for the RootEvent event,
because it is the only event common to all array elements.
11-38
See Also
het = [SpecificA,SpecificB,SpecificC];
class(het)
ans
RootSuperclass
events(het)
RootEvent
event.hasListener cannot determine if there are listeners for events that are defined
by some but not all objects in the array:
event.hasListener(het,'ClassAEvent')
Determine if individual objects in the heterogeneous array have listeners defined for their
specific events, by indexing into the array:
event.hasListener(het(1),'ClassAEvent')
For more information about determining the class of heterogeneous arrays, see
“Designing Heterogeneous Class Hierarchies” on page 10-24.
See Also
Related Examples
• “Listener Lifecycle” on page 11-28
11-39
11 Events — Sending and Responding to Messages
In the properties block, enable the SetObservable attribute. You can define PreSet and
PostSet listeners for the properties defined in this block:
properties (SetObservable)
PropOne
PropTwo
...
end
The listener executes the callback function when MATLAB triggers the property event.
Define the callback function to have two specific arguments, which are passed to the
function automatically when called by the listener:
• Event source — a meta.property object describing the object that is the source of
the property event
11-40
Listen for Changes to Property Values
You can pass additional arguments if necessary. It is often simple to define this method as
Static because these two arguments contain most necessary information in their
properties.
For example, suppose the handlePropEvents function is a static method of the class
creating listeners for two properties of an object of another class:
methods (Static)
function handlePropEvents(src,evnt)
switch src.Name
case 'PropOne'
% PropOne has triggered an event
...
case 'PropTwo'
% PropTwo has triggered an event
...
end
end
end
“Class Metadata” on page 16-2 provides more information about the meta.property
class.
11-41
11 Events — Sending and Responding to Messages
If your listener callback is an ordinary method and not a static method, the syntax is:
addlistener(EventObject,'PropOne','PostSet',@obj.handlePropertyEvents);
where obj is the handle of the object defining the callback method.
If the listener callback is a function that is not a class method, you pass a function handle
to that function. Suppose that the callback function is a package function:
addlistener(EventObject,'PropOne','PostSet',@package.handlePropertyEvents);
For more information on passing functions as arguments, see “Create Function Handle”.
The PropEvent class enables property PreSet and PostSet event triggering by
specifying the SetObservable property attribute. These properties also enable the
AbortSet attribute, which prevents the triggering of the property events if the
properties are set to a value that is the same as their current value (see “Assignment
When Property Value Is Unchanged” on page 11-44).
11-42
See Also
You can define listeners for other events or other properties using a similar approach. It is
not necessary to use the same callback function for each listener. See the
meta.property and event.PropertyEvent reference pages for more on the
information contained in the arguments passed to the listener callback function.
classdef PropListener < handle
% Define property listeners
methods
function obj = PropListener(evtobj)
if nargin > 0
addlistener(evtobj,'PropOne','PostSet',@PropListener.handlePropEvents);
addlistener(evtobj,'PropTwo','PostSet',@PropListener.handlePropEvents);
end
end
end
methods (Static)
function handlePropEvents(src,evnt)
switch src.Name
case 'PropOne'
sprintf('PropOne is %s\n',num2str(evnt.AffectedObject.PropOne))
case 'PropTwo'
sprintf('PropTwo is %s\n',num2str(evnt.AffectedObject.PropTwo))
end
end
end
end
See Also
Related Examples
• “Assignment When Property Value Is Unchanged” on page 11-44
11-43
11 Events — Sending and Responding to Messages
You can prevent these actions by setting the property's AbortSet attribute to true.
When AbortSet is enabled, MATLAB compares the current property value to the new
value being assigned to the property. If the new value is the same as the current value,
MATLAB does not:
To compare values, MATLAB must get the current value of the property. Getting the
current value causes the property get method (get.Property) to execute, if one exists.
Any errors that occur when calling the property get method are visible to the user, even if
MATLAB does not change the current value.
11-44
Assignment When Property Value Is Unchanged
• You want to prevent notification of the PreSet and PostSet events and execution of
the listener callbacks when the property value does not change.
• The cost of setting a property value is greater than the cost of comparing the current
property value with the value being assigned, and you are willing to incur the
comparison cost with all assignments to the property.
Implement AbortSet
The following example shows how the AbortSet attribute works. The AbortTheSet
class defines a property, PropOne, that has listeners for the PreGet, PreSet, PostGet,
and PostSet events and enables the AbortSet attribute.
Note To use this class, save the AbortTheSet class in a file with the same name in a
folder on your MATLAB path.
11-45
11 Events — Sending and Responding to Messages
end
function getPrePropEvt(obj,src,evnt)
disp ('Pre-get event triggered')
% ...
end
function setPrePropEvt(obj,src,evnt)
disp ('Pre-set event triggered')
% ...
end
function getPostPropEvt(obj,src,evnt)
disp ('Post-get event triggered')
% ...
end
function setPostPropEvt(obj,src,evnt)
disp ('Post-set event triggered')
% ...
end
function disp(obj)
% Overload disp to avoid accessing property
disp (class(obj))
end
end
end
The class specifies an initial value of 7 for the PropOne property. Therefore, if you create
an object and assign the property value of 7, there is no need to trigger the PreSet
event. However, the getPropOne method is called to get the current value of the
property to compare to the assigned vale.
obj = AbortTheSet;
obj.PropOne = 7;
get.PropOne called
If you specify a value other than 7, then MATLAB performs these steps:
obj = AbortTheSet;
obj.PropOne = 9;
11-46
Assignment When Property Value Is Unchanged
get.PropOne called
Pre-set event triggered
set.PropOne called
Post-set event triggered
If you query the property value, the PreGet and PostGet events are triggered.
obj.PropOne
ans =
11-47
11 Events — Sending and Responding to Messages
obj.PropOne = val;
end
function getPrePropEvt(obj,src,evnt)
disp ('Pre-get event triggered')
% ...
end
function setPrePropEvt(obj,src,evnt)
disp ('Pre-set event triggered')
% ...
end
function getPostPropEvt(obj,src,evnt)
disp ('Post-get event triggered')
% ...
end
function setPostPropEvt(obj,src,evnt)
disp ('Post-set event triggered')
% ...
end
function disp(obj)
% Overload disp to avoid accessing property
disp (class(obj))
end
end
end
Because MATLAB applies scalar expansion to satisfy the size restriction, the following
assignment does not trigger the PreSet or PostSet events.
obj = AbortTheSet;
obj.PropOne = 7;
get.PropOne called
obj.PropOne
ans =
7 7 7
For information on property validation, see “Validate Property Values” on page 8-24.
11-48
See Also
See Also
Related Examples
• “Property Access Methods” on page 8-50
• “Determine If Event Has Listeners” on page 11-37
11-49
11 Events — Sending and Responding to Messages
In this section...
“Example Overview” on page 11-50
“Techniques Demonstrated in This Example” on page 11-51
“Summary of fcneval Class” on page 11-51
“Summary of fcnview Class” on page 11-52
“Methods Inherited from Handle Class” on page 11-54
“Using the fcneval and fcnview Classes” on page 11-54
“Implement UpdateGraph Event and Listener” on page 11-56
“The PostSet Event Listener” on page 11-60
“Enable and Disable Listeners” on page 11-63
“@fcneval/fcneval.m Class Code” on page 11-64
“@fcnview/fcnview.m Class Code” on page 11-65
Example Overview
This example defines two classes:
• fcneval — The function evaluator class contains a MATLAB expression and evaluates
this expression over a specified range
• fcnview — The function viewer class contains a fcneval object and displays surface
graphs of the evaluated expression using the data contained in fcneval.
• A class-defined event that occurs when a new value is specified for the MATLAB
function
• A property event that occurs when the property containing the limits is changed
The following diagram shows the relationship between the two objects. The fcnview
object contains a fcneval object and creates graphs from the data it contains. fcnview
creates listeners to change the graphs if any of the data in the fcneval object change.
11-50
Techniques for Using Events and Listeners
fcnview
Properties
fcneval object fcneval
graph Properties
FofXY
Lm observable
Data
Events
UpdateGraph
Listeners
Lm property
UpdateGraph
11-51
11 Events — Sending and Responding to Messages
Method Purpose
fcneval Class constructor. Inputs are function handle and two-element vector
specifying the limits over which to evaluate the function.
set.FofXY FofXY property set function. Called whenever property value is set,
including during object construction.
set.Lm Lm property set function. Used to test for valid limits.
get.Data Data property get function. This method calculates the values for
the Data property whenever that data is queried (by class members
or externally).
grid A static method (Static attribute set to true) used in the
calculation of the data.
11-52
Techniques for Using Events and Listeners
Method Purpose
fcnview Class constructor. Input is fcneval object.
createLisn Calls addlistener to create listeners for UpdateGraph and
Lm property PostSet listeners.
lims Sets axes limits to current value of fcneval object's Lm
property. Used by event handlers.
updateSurfaceData Updates the surface data without creating a new object. Used
by event handlers.
listenUpdateGraph Callback for UpdateGraph event.
listenLm Callback for Lm property PostSet event
delete Delete method for fcnview class.
createViews Static method that creates an instance of the fcnview class
for each subplot, defines the context menus that enable/
disable listeners, and creates the subplots
11-53
11 Events — Sending and Responding to Messages
“Handle Class Methods” on page 7-13 provides a complete list of methods that are
inherited when you subclass the handle class.
Methods Purpose
Inherited from
Handle Class
addlistener Register a listener for a specific event and attach listener to event-
defining object.
notify Trigger an event and notify all registered listeners.
You create a fcneval object by calling its constructor with two arguments—an
anonymous function and a two-element, monotonically increasing vector. For example:
Use the createViews static method to create the graphs of the function. Use the class
name to call a static function:
fcnview.createViews(feobject);
The createView method generates four views of the function contained in the fcneval
object.
11-54
Techniques for Using Events and Listeners
Each subplot defines a context menu that can enable and disable the listeners associated
with that graph. For example, if you disable the listeners on subplot 221 (upper left) and
change the MATLAB expression contained by the fcneval object, only the remaining
three subplots update when the UpdateGraph event is triggered:
11-55
11 Events — Sending and Responding to Messages
Similarly, if you change the limits by assigning a value to the feobject.Lm property, the
feobject triggers a PostSet property event and the listener callbacks update the
graph.
In this figure, the listeners are reenabled via the context menu for subplot 221. Because
the listener callback for the property PostSet event also updates the surface data, all
views are now synchronized
The UpdateGraph event is a class-defined event. The fcneval class names the event
and calls notify when the event occurs.
11-56
Techniques for Using Events and Listeners
The fcnview class defines a listener for this event. When fcneval triggers the event,
the fcnview listener executes a callback function that performs the follow actions:
• Determines if the handle of the surface object stored by the fcnview object is still
valid (that is, does the object still exist)
• Updates the surface XData, YData, and ZData by querying the fcneval object's
Data property.
11-57
11 Events — Sending and Responding to Messages
events
UpdateGraph
end
The fcneval class defines a property set method for the FofXY property. FofXY is the
property that stores the MATLAB expression for the mathematical function. This
expression must be a valid MATLAB expression for a function of two variables.
set.FofXY issues the exception using the MException.throw method. Issuing the
exception terminates execution of set.FofXY and prevents the method from making an
assignment to the property or triggering the UpdateGraph event.
11-58
Techniques for Using Events and Listeners
The fcneval.isSuitable method could provide additional test to ensure that the
expression assigned to the FofXY property meets the criteria required by the class
design.
Other Approaches
The class could have implemented a property set event for the FofXY property and
would, therefore, not need to call notify (see “Listen for Changes to Property Values” on
page 11-40). Defining a class event provides more flexibility in this case because you can
better control event triggering.
For example, suppose that you wanted to update the graph only if the new data is
different. If the new expression produced the same data within some tolerance, the
set.FofXY method could not trigger the event and avoid updating the graph. However,
the method could still set the property to the new value.
The fcnview class creates a listener for the UpdateGraph event using the
addlistener method:
obj.HLUpdateGraph = addlistener(obj.FcnObject,'UpdateGraph',...
@(src,evnt)listenUpdateGraph(obj,src,evnt)); % Add obj to argument list
11-59
11 Events — Sending and Responding to Messages
The fcnview object (obj) is added to the two default arguments (src, evnt) passed to
the listener callback. Keep in mind, the source of the event (src) is the fcneval object,
but the fcnview object contains the handle of the surface object that the callback
updates.
function listenUpdateGraph(obj,src,evnt)
if ishandle(obj.HSurface) % If surface exists
obj.updateSurfaceData % Update surface data
end
end
The updateSurfaceData function is a class method that updates the surface data when
a different mathematical function is assigned to the fcneval object. Updating a graphics
object data is more efficient than creating a new object using the new data:
function updateSurfaceData(obj)
% Get data from fcneval object and set surface data
set(obj.HSurface,...
'XData',obj.FcnObject.Data.X,...
'YData',obj.FcnObject.Data.Y,...
'ZData',obj.FcnObject.Data.Matrix);
end
11-60
Techniques for Using Events and Listeners
The fcneval class defines a set function for the Lm property. When a value is assigned to
this property during object construction or property reassignment, the following
sequence occurs:
11-61
11 Events — Sending and Responding to Messages
The PostSet event does not occur until an actual assignment of the property occurs. The
property set function provides an opportunity to deal with potential assignment errors
before the PostSet event occurs.
To create a listener for the PostSet event, you must set the property's SetObservable
attribute to true:
properties (SetObservable = true)
Lm = [-2*pi 2*pi]; % specifies default value
end
“Specify Property Attributes” on page 8-7 provides a list of all property attributes.
The fcnview class creates a listener for the PostSet event using the addlistener
method:
obj.HLLm = addlistener(obj.FcnObject,'Lm','PostSet',...
@(src,evnt)listenLm(obj,src,evnt)); % Add obj to argument list
The fcnview object stores a handle to the event.listener object in its HLLm property,
which is used to enable/disable the listener by a context menu (see “Enable and Disable
Listeners” on page 11-63).
The fcnview object (obj) is added to the two default arguments (src, evnt) passed to
the listener callback. Keep in mind, the source of the event (src) is the fcneval object,
but the fcnview object contains the handle of the surface object that the callback
updates.
The callback sets the axes limits and updates the surface data because changing the
limits causes the mathematical function to be evaluated over a different range:
function listenLm(obj,src,evnt)
if ishandle(obj.HAxes) % If there is an axes
lims(obj); % Update its limits
if ishandle(obj.HSurface) % If there is a surface
obj.updateSurfaceData % Update its data
end
end
end
11-62
Techniques for Using Events and Listeners
There are two callbacks used by the context menu corresponding to the two items on the
menu:
• Listen — Sets the Enabled property for both the UpdateGraph and PostSet
listeners to true and adds a check mark next to the Listen menu item.
• Don't Listen — Sets the Enabled property for both the UpdateGraph and PostSet
listeners to false and adds a check mark next to the Don't Listen menu item.
Both callbacks include the fcnview object as an argument (in addition to the required
source and event data arguments) to provide access to the handle of the listener objects.
The enableLisn function is called when the user selects Listen from the context menu.
function enableLisn(obj,src,evnt)
obj.HLUpdateGraph.Enabled = true; % Enable listener
obj.HLLm.Enabled = true; % Enable listener
set(obj.HEnableCm,'Checked','on') % Check Listen
set(obj.HDisableCm,'Checked','off') % Uncheck Don't Listen
end
The disableLisn function is called when the user selects Don't Listen from the context
menu.
function disableLisn(obj,src,evnt)
obj.HLUpdateGraph.Enabled = false; % Disable listener
obj.HLLm.Enabled = false; % Disable listener
set(obj.HEnableCm,'Checked','off') % Unheck Listen
set(obj.HDisableCm,'Checked','on') % Check Don't Listen
end
11-63
11 Events — Sending and Responding to Messages
events
UpdateGraph
end
methods
function obj = fcneval(fcn_handle,limits) % Constructor returns object
if nargin > 0
obj.FofXY = fcn_handle; % Assign property values
obj.Lm = limits;
end
end
function set.FofXY(obj,func)
me = fcneval.isSuitable(func);
if ~isempty(me)
throw(me)
end
obj.FofXY = func;
notify(obj,'UpdateGraph');
end
function set.Lm(obj,lim)
if ~(lim(1) < lim(2))
error('Limits must be monotonically increasing')
else
obj.Lm = lim;
end
end
end
end % methods
11-64
Techniques for Using Events and Listeners
end
end
methods
function obj = fcnview(fcnobj)
if nargin > 0
obj.FcnObject = fcnobj;
obj.createLisn;
end
end
11-65
11 Events — Sending and Responding to Messages
function createLisn(obj)
obj.HLUpdateGraph = addlistener(obj.FcnObject,'UpdateGraph',...
@(src,evnt)listenUpdateGraph(obj,src,evnt));
obj.HLLm = addlistener(obj.FcnObject,'Lm','PostSet',...
@(src,evnt)listenLm(obj,src,evnt));
end
function lims(obj)
lmts = obj.FcnObject.Lm;
set(obj.HAxes,'XLim',lmts);
set(obj.HAxes,'Ylim',lmts);
end
function updateSurfaceData(obj)
data = obj.FcnObject.Data;
set(obj.HSurface,...
'XData',data.X,...
'YData',data.Y,...
'ZData',data.Matrix);
end
function listenUpdateGraph(obj,~,~)
if ishandle(obj.HSurface)
obj.updateSurfaceData
end
end
function listenLm(obj,~,~)
if ishandle(obj.HAxes)
lims(obj);
if ishandle(obj.HSurface)
obj.updateSurfaceData
end
end
end
function delete(obj)
if ishandle(obj.HAxes)
delete(obj.HAxes);
else
return
end
end
11-66
Techniques for Using Events and Listeners
end
methods (Static)
createViews(a)
end
end
@fcnview/createViews
function createViews(fcnevalobj)
p = pi; deg = 180/p;
hfig = figure('Visible','off',...
'Toolbar','none');
for k=4:-1:1
fcnviewobj(k) = fcnview(fcnevalobj);
axh = subplot(2,2,k);
fcnviewobj(k).HAxes = axh;
hcm(k) = uicontextmenu;
set(axh,'Parent',hfig,...
'FontSize',8,...
'UIContextMenu',hcm(k))
fcnviewobj(k).HEnableCm = uimenu(hcm(k),...
'Label','Listen',...
'Checked','on',...
'Callback',@(src,evnt)enableLisn(fcnviewobj(k),src,evnt));
fcnviewobj(k).HDisableCm = uimenu(hcm(k),...
'Label','Don''t Listen',...
'Checked','off',...
'Callback',@(src,evnt)disableLisn(fcnviewobj(k),src,evnt));
az = p/k*deg;
view(axh,az,30)
title(axh,['View: ',num2str(az),' 30'])
fcnviewobj(k).lims;
surfLight(fcnviewobj(k),axh)
end
set(hfig,'Visible','on')
end
function surfLight(obj,axh)
obj.HSurface = surface(obj.FcnObject.Data.X,...
obj.FcnObject.Data.Y,...
obj.FcnObject.Data.Matrix,...
'FaceColor',[.8 .8 0],'EdgeColor',[.3 .3 .2],...
'FaceLighting','phong',...
'FaceAlpha',.3,...
11-67
11 Events — Sending and Responding to Messages
'HitTest','off',...
'Parent',axh);
lims(obj)
camlight left; material shiny; grid off
colormap copper
end
function enableLisn(obj,~,~)
obj.HLUpdateGraph.Enabled = true;
obj.HLLm.Enabled = true;
set(obj.HEnableCm,'Checked','on')
set(obj.HDisableCm,'Checked','off')
end
function disableLisn(obj,~,~)
obj.HLUpdateGraph.Enabled = false;
obj.HLLm.Enabled = false;
set(obj.HEnableCm,'Checked','off')
set(obj.HDisableCm,'Checked','on')
end
11-68
12
Classification
Organizing classes into hierarchies facilitates the reuse of code and the reuse of solutions
to design problems that have already been solved. You can think of class hierarchies as
sets — supersets (referred to as superclasses or base classes), and subsets (referred to as
subclasses or derived classes). For example, the following picture shows how you could
represent an employee database with classes.
12-2
Hierarchies of Classes — Concepts
TestEngineer
(is an Engineer)
Properties
TestStage
The root of the hierarchy is the Employees class. It contains data and operations that
apply to the set of all employees. Contained in the set of employees are subsets whose
members, while still employees, are also members of sets that more specifically define the
type of employee. Subclasses like TestEngineer are examples of these subsets.
12-3
12 How to Build on Other Classes
When designing classes, your abstraction contains only those elements that are necessary.
For example, the employee hair color and shoe size certainly characterize the employee,
but are probably not relevant to the design of this employee class. Their sales region is
relevant only to some employee so this characteristic belongs in a subclass.
You can usually describe the relationship between an object of a subclass and an object of
its superclass with a statement like:
This relationship implies that objects belonging to a subclass have the same properties,
methods, and events as the superclass. Subclass objects also have any new features
defined by the subclass. Test this relationship with the isa function.
You can pass a subclass object to a superclass method, but you can access only those
properties that the superclass defines. This behavior enables you to modify the subclasses
without affecting the superclass.
12-4
Hierarchies of Classes — Concepts
Two points about super and subclass behavior to keep in mind are:
Therefore, you can treat an Engineer object like any other Employees object, but an
Employee object cannot pass for an Engineer object.
MATLAB determines the class of an object based on its most specific class. Therefore, an
Engineer object is of class Engineer, while it is also an Employees object, as using
the isa function reveals.
Generally, MATLAB does not allow you to create arrays containing a mix of superclass and
subclass objects because an array can be of only one class. If you attempt to concatenate
objects of different classes, MATLAB looks for a converter method defined by the less
dominant class
See “Concatenating Objects of Different Classes” on page 10-18 for more information.
See “Object Converters” on page 17-12 for information on defining converter methods.
12-5
12 How to Build on Other Classes
Create an interface using an abstract class as the superclass. This class defines the
methods and properties that you must implement in the subclasses, but does not provide
an implementation.
The subclasses must provide their own implementation of the abstract members of the
superclass. To create an interface, define methods and properties as abstract using their
Abstract attribute. See “Abstract Classes” on page 12-91 for more information and an
example.
See Also
Related Examples
• “Design Subclass Constructors” on page 12-9
12-6
Subclass Syntax
Subclass Syntax
In this section...
“Subclass Definition Syntax” on page 12-7
“Subclass double” on page 12-7
When inheriting from multiple classes, use the & character to indicate the combination of
the superclasses:
See “Class Member Compatibility” on page 12-22 for more information on deriving from
multiple superclasses.
Class Attributes
Subclass double
Suppose you want to define a class that derived from double and restricts values to be
positive numbers. The PositiveDouble class:
• Supports a default constructor (no input arguments). See “No Input Argument
Constructor Requirement” on page 9-25
• Restricts the inputs to positive values using mustBePositive.
• Calls the superclass constructor with the input value to create the double numeric
value.
12-7
12 How to Build on Other Classes
if nargin == 0
data = 1;
else
mustBePositive(data)
end
obj = obj@double(data);
end
end
end
a = PositiveDouble(1:5);
You can perform operations on objects of this class like any double.
sum(a)
ans =
15
a = PositiveDouble(0:5);
See Also
Related Examples
• “Design Subclass Constructors” on page 12-9
• “Subclasses of MATLAB Built-In Types” on page 12-50
12-8
Design Subclass Constructors
If you do not explicitly call the superclass constructors from the subclass constructor,
MATLAB implicitly calls these constructors with no arguments. The superclass
constructors must support the no argument syntax to support implicit calls.
MATLAB does not guarantee any specific calling order when there are multiple
superclasses. If the order in which MATLAB calls the superclass constructors is
important, call the superclass constructors explicitly from the subclass constructor.
If you do not define a subclass constructor, you can call the default constructor with
superclass arguments. For more information, see “Default Constructor” on page 9-23 and
“Implicit Call to Inherited Constructor” on page 9-29.
obj@SuperClass1(args,...);
...
obj@SuperclassN(args,...);
12-9
12 How to Build on Other Classes
Where obj is the output of the subclass constructor, SuperClass... is the name of a
superclass, and args are any arguments required by the respective superclass
constructor.
For example, the following segment of a class definition shows that a class called Stocks
that is a subclass of a class called Assets.
classdef Stocks < Assets
methods
function s = Stocks(asset_args,...)
if nargin == 0
% Assign values to asset_args
end
% Call asset constructor
s@Assets(asset_args);
...
end
end
end
If a superclass is contained in a package, include the package name. For example, the
Assests class is in the finance package:
classdef Stocks < finance.Assets
methods
function s = Stocks(asset_args,...)
if nargin == 0
...
end
% Call asset constructor
[email protected](asset_args);
...
end
end
end
To derive a class from multiple superclasses, initialize the subclass object with calls to
each superclass constructor:
12-10
Design Subclass Constructors
For example, the Stocks class constructor supports the no argument case with the if
statement, but calls the superclass constructor outside of the if code block.
12-11
12 How to Build on Other Classes
The following implementations of classes A, B, and C show how to design this relationship
in each class.
Class B inherits properties x and y from class A. The class B constructor calls the class A
constructor to initialize x and then assigns a value to y.
classdef B < A
methods
function obj = B(x,y)
...
obj@A(x);
obj.y = y;
end
end
end
Class C accepts values for the properties x and y, and passes these values to the class B
constructor, which in turn calls the class A constructor:
classdef C < B
methods
function obj = C(x,y)
12-12
See Also
...
obj@B(x,y);
end
end
end
See Also
Related Examples
• “No Input Argument Constructor Requirement” on page 9-25
12-13
12 How to Build on Other Classes
If you explicitly call a superclass constructor from the most specific subclass constructor
(ClassC in the following diagram), then MATLAB calls the most specific subclass
constructor first. If you do not make an explicit call to a superclass constructor from the
subclass constructor, MATLAB makes the implicit call when accessing the object.
Suppose that you have a hierarchy of classes in which ClassC derives from ClassB,
which derives from ClassA. The constructor for a subclass can call only direct
superclasses. Therefore, each class constructor can call the direct superclass constructor:
In cases of multiple inheritance, the subclass constructor can call each superclass
constructor. To ensure that a specific superclass constructor calling sequence is followed,
call all direct superclass constructors explicitly from the most specific subclass
constructor:
12-14
See Also
See Also
Related Examples
• “Call Only Direct Superclass from Constructor” on page 12-12
• “Class Constructor Methods” on page 9-21
12-15
12 How to Build on Other Classes
For example, suppose that both superclass and subclass define a method called foo. The
method names are the same so the subclass method can call the superclass method.
However, the subclass method can also perform other steps before and after the call to
the superclass method. It can operate on the specialized parts to the subclass that are not
part of the superclass.
For example, this subclass defines a foo method that calls the superclass foo method
classdef Sub < Super
methods
function foo(obj)
% preprocessing steps
12-16
Modify Inherited Methods
...
foo@Super(obj);
% postprocessing steps
...
end
end
end
classdef Super
methods
function foo(obj)
step1(obj) % Call step1
step2(obj) % Call step2
step3(obj) % Call step3
end
end
methods (Access = protected)
function step1(obj)
% Superclass version
end
function step2(obj)
% Superclass version
end
function step3(obj)
% Superclass version
end
end
end
The subclass does not reimplement the foo method, it reimplements only the methods
that carry out the series of steps (step1(obj), step2(obj), step3(obj)). That is, the
subclass can specialize the actions taken by each step, but does not control the order of
the steps in the process. When you pass a subclass object to the superclass foo method,
MATLAB calls the subclass step methods because of the dispatching rules.
12-17
12 How to Build on Other Classes
classdef Super
methods
function foo(obj)
% Superclass implementation
end
end
end
12-18
See Also
See Also
Related Examples
• “Invoking Superclass Methods in Subclass Methods” on page 9-19
12-19
12 How to Build on Other Classes
If a superclass defines a property with private access, then only the superclass can access
this property. The subclass can implement a different property with the same name.
For example, if a subclass property has the same name as a superclass private property,
and a method of the superclass references the property name, MATLAB accesses the
property defined by the superclass.
classdef Super
properties (Access = private)
Prop = 2
end
methods
function p = superMethod(obj)
p = obj.Prop;
12-20
See Also
end
end
end
If you create an instance of the Sub class and use it to call the superclass method,
MATLAB accesses the private property of the superclass:
subObj = Sub
subObj =
Prop: 1
subObj.superMethod
ans =
See Also
More About
• “Property Attributes” on page 8-9
12-21
12 How to Build on Other Classes
In this section...
“Specify Multiple Superclasses” on page 12-22
“Class Member Compatibility” on page 12-22
“Multiple Inheritance” on page 12-23
For more information on class syntax, see “Subclass Syntax” on page 12-7.
Here are various situations where you can resolve name and definition conflicts.
Property Conflicts
If two or more superclasses define a property with the same name, then at least one of
the following must be true:
• All, or all but one of the properties must have their SetAccess and GetAccess
attributes set to private
• The properties have the same definition in all superclasses (for example, when all
superclasses inherited the property from a common base class)
12-22
Subclassing Multiple Classes
Method Conflicts
If two or more superclasses define methods with the same name, then at least one of the
following must be true:
• The method Access attribute is private so only the defining superclass can access
the method.
• The method has the same definition in all subclasses. This situation can occur when all
superclasses inherit the method from a common base class and none of the
superclasses override the inherited definition.
• The subclass redefines the method to disambiguate the multiple definitions across all
superclasses. Therefore, the superclass methods must not have their Sealed attribute
set to true.
• Only one superclass defines the method as Sealed, in which case, the subclass adopts
the sealed method definition.
• The superclasses define the methods as Abstract and rely on the subclass to define
the method.
Event Conflicts
If two or more superclasses define events with the same name, then at least one of the
following must be true:
Multiple Inheritance
Resolving the potential conflicts involved when defining a subclass from multiple classes
often reduces the value of this approach. For example, problems can arise when you
enhance superclasses in future versions and introduce new conflicts.
Reduce potential problems by implementing only one unrestricted superclass. In all other
superclasses, all methods are
• Abstract
• Defined by a subclass
12-23
12 How to Build on Other Classes
When using multiple inheritance, ensure that all superclasses remain free of conflicts in
definition.
See Also
Related Examples
• “Design Subclass Constructors” on page 12-9
• “Handle Compatible Classes” on page 12-39
12-24
Specify Allowed Subclasses
Basic Knowledge
The material presented in this section builds on an understanding of the following
information:
By controlling the allowed subclasses, you can create a sealed hierarchy of classes. That
is, a system of classes that enables a specific set of classes to derive from specific base
classes, but that does not allow unrestricted subclassing.
See “Define Sealed Hierarchy of Classes” on page 12-27 for more about this technique.
12-25
12 How to Build on Other Classes
Use a cell array of meta.class objects to define more than one allowed subclass:
classdef (AllowedSubclasses = {?ClassName1,?ClassName2,...?ClassNameN}) MySuperClass
...
end
Always use the fully qualified class name when referencing the class name:
classdef (AllowedSubclasses = ?Package.SubPackage.ClassName1) MySuperClass
...
end
Note Use only the ? operator and the class name to generate meta.class objects.
Values assigned to the AllowedSubclasses attribute cannot contain any other MATLAB
expressions, including functions that return either meta.class objects or cell arrays of
meta.class objects.
Including a class in the list of AllowedSubclasses does not define that class as a
subclass or require you to define the class as a subclass. It just allows the referenced
class to be defined as a subclass.
Declaring a class as an allowed subclass does not affect whether this class can itself be
subclassed.
Note If MATLAB does not find any of the classes in the allowed classes list, the class is
effectively Sealed. A sealed class is equivalent to AllowedSubclasses = {}.
12-26
See Also
Sealed class hierarchies enable you to use the level of abstraction that your design
requires while maintaining a closed system of classes.
See Also
Related Examples
• “Handle Compatible Classes” on page 12-39
12-27
12 How to Build on Other Classes
Basic Knowledge
The material presented in this section builds on an understanding of the following
information:
Related Topics
12-28
Class Members Access
This technique provides greater flexibility and control in the design of a system of classes.
For example, use access control lists to define separate classes, but not allow access to
class members from outside the class system.
12-29
12 How to Build on Other Classes
Use the class meta.class object to refer to classes in the access list. To specify more
than one class, use a cell array of meta.class objects. Use the package name when
referring to classes that are in packages.
Note Specify the meta.class objects explicitly (created with the ? operator), not as
values returned by functions or other MATLAB expressions.
Generate the meta.class objects using only the ? operator and the class name. Values
assigned to the attributes cannot contain any other MATLAB expressions, including
functions that return allowed attribute values:
• meta.class objects
• Cell arrays of meta.class objects
• The values public, protected, or private
Specify these values explicitly, as shown in the example code in this section.
12-30
Class Members Access
classdef GrantAccess
properties (GetAccess = ?NeedAccess)
Prop1 = 7
end
end
The NeedAccess class defines a method that uses the value of the GrantAccess Prop1
value. The dispObj method is defined as a Static method, however, it could be an
ordinary method.
classdef NeedAccess
methods (Static)
function dispObj(GrantAccessObj)
disp(['Prop1 is: ',num2str(GrantAccessObj.Prop1)])
end
end
end
Get access to Prop1 is private so MATLAB returns an error if you attempt to access the
property from outside the class definition. For example, from the command line:
a = GrantAccess;
a.Prop1
NeedAccess.dispObj(a)
Prop1 is: 7
12-31
12 How to Build on Other Classes
• Define their own method with the same name (if not a subclass).
• Override the method in a subclass only if the superclass defining the method includes
itself or the subclass in the access list.
These sample classes show the behavior of methods called from methods of other classes
that are in the access list. The class AcListSuper gives the AcListNonSub class access
to its m1 method:
classdef AcListSuper
methods (Access = {?AcListNonSub})
function obj = m1(obj)
disp ('Method m1 called')
end
end
end
Because AcListNonSub is in the access list of m1, its methods can call m1 using an
instance of AcListSuper:
classdef AcListNonSub
methods
function obj = nonSub1(obj,AcListSuper_Obj)
% Call m1 on AcListSuper class
AcListSuper_Obj.m1;
end
function obj = m1(obj)
% Define a method named m1
disp(['Method m1 defined by ',class(obj)])
end
end
end
a = AcListSuper;
b = AcListNonSub;
b.nonSub1(a);
Method m1 called
12-32
Class Members Access
b.m1;
Including the defining class in the access list for a method grants access to all subclasses
derived from that class. When you derive from a class that has a method with an access
list and that list does not include the defining class:
Attempting to call the superclass m1 method from the sub1 method results in an error
because subclasses are not in the access list for m1:
a = AcListSuper;
c = AcListSub;
c.sub1(a);
12-33
12 How to Build on Other Classes
You can call a superclass method from a subclass that does not have access to that
method using an object of a class that is in the superclass method access list.
The AcListSub sub2 method calls a method of a class (AcListNonSub) that is on the
access list for m1. This method, nonSub1, does have access to the superclass m1 method:
a = AcListSuper;
b = AcListNonSub;
c = AcListSub;
c.sub2(b,a);
Method m1 called
When subclasses are not included in the access list for a method, those subclasses cannot
define a method with the same name. This behavior is not the same as cases in which the
method Access is explicitly declared as private.
For example, adding the following method to the AcListSub class definition produces an
error when you attempt to instantiate the class.
c = AcListSub;
Class 'AcListSub' is not allowed to override the method 'm1' because neither it nor its
superclasses have been granted access to the method by class 'AcListSuper'.
The AcListNonSub class is in the m1 method access list. This class can define a method
that calls the m1 method using an object of the AcListSub class. While AcListSub is not
in the access list for method m1, it is a subclass of AcListSuper.
12-34
See Also
methods
function obj = nonSub2(obj,AcListSub_Obj)
disp('Call m1 via subclass object:')
AcListSub_Obj.m1;
end
end
b = AcListNonSub;
c = AcListSub;
b.nonSub2(c);
This behavior is consistent with the behavior of any subclass object, which can substitute
for an object of its superclass.
When an abstract method has an access list, only the classes in the access list can
implement the method. A subclass that is not in the access list cannot implement the
abstract method so that subclass is itself abstract.
See Also
Related Examples
• “Property Access List” on page 12-36
• “Method Access List” on page 12-37
• “Event Access List” on page 12-38
12-35
12 How to Build on Other Classes
• Gives the classes ClassA and ClassB get access to the Prop1 property.
• Gives all subclasses of ClassA and ClassB get access to the Prop1 property.
• Does not provide get access to Prop1 from subclasses of PropertyAccess.
• Defines private set access for the Prop1 property.
• Gives set and get access to Prop2 for ClassC and its subclasses.
See Also
Related Examples
• “Properties with Access Lists” on page 12-31
12-36
Method Access List
classdef MethodAccess
methods (Access = {?ClassA, ?ClassB, ?MethodAccess})
function listMethod(obj)
...
end
end
end
See Also
Related Examples
• “Methods with Access Lists” on page 12-31
12-37
12 How to Build on Other Classes
classdef EventAccess
events (NotifyAccess = private, ListenAccess = {?ClassA, ?ClassB})
Event1
Event2
end
end
• Limits notify access for Event1 and Event2 to EventAccess; only methods of the
EventAccess can trigger these events.
• Gives listen access for Event1 and Event2 to methods of ClassA and ClassB.
Methods of EventAccess, ClassA, and ClassB can define listeners for these events.
Subclasses of MyClass cannot define listeners for these events.
See Also
Related Examples
• “Events and Listeners Syntax” on page 11-22
12-38
Handle Compatible Classes
Basic Knowledge
The material presented in this section builds on knowledge of the following information.
Key Concepts
Handle-compatible class — a class that you can include with handle classes in a class
hierarchy, even if the class is not a handle class.
The solution is to use handle-compatible classes. Handle compatible classes are a type of
class that you can use with handle classes when forming sets of superclasses. Designate a
12-39
12 How to Build on Other Classes
A class that does not explicitly set its HandleCompatible attribute to true is:
isa(obj,'handle')
See Also
Related Examples
• “How to Define Handle-Compatible Classes” on page 12-41
12-40
How to Define Handle-Compatible Classes
• It is a handle class
• Its HandleCompatible attribute is set to true
The HandleCompatible class attribute identifies classes that you can combine with
handle classes when specifying a set of superclasses.
Handle compatibility provides greater flexibility when defining abstract superclasses. For
example, when using superclasses that support both handle and value subclasses, handle
compatibility removes the need to define both a handle version and a nonhandle version
of a class.
The Utility class is useful to both handle and value subclasses. In this example, the
Utility class defines a method to reset property values to the default values defined in
the respective class definition:
12-41
12 How to Build on Other Classes
The Utility class is handle compatible. Therefore, you can use it in the derivation of
classes that are either handle classes or value classes. See “Class Introspection and
Metadata” for information on using meta-data classes.
The resetDefaults method defined by the Utility class returns the object it modifies.
When you call resetDefaults with a value object, the method must return the modified
object. It is important to implement methods that work with both handle and value
objects in a handle compatible superclass. See “Object Modification” on page 5-63 for
more information on modifying handle and value objects.
Consider the behavior of a value class that subclasses the Utility class. The
PropertyDefaults class defines three properties, all of which have default values:
classdef PropertyDefaults < Utility
properties
p1 = datestr(rem(now,1)) % Current time
p2 = 'red' % Character vector
p3 = pi/2 % Result of division operation
end
end
pd =
Assign new values that are different from the default values:
pd.p1 = datestr(rem(now,1));
pd.p2 = 'green';
pd.p3 = pi/4;
All pd object property values now contain values that are different from the default values
originally defined by the class:
12-42
How to Define Handle-Compatible Classes
pd
pd =
Call the resetDefaults method, which is inherited from the Utility class. Because
the PropertyDefaults class is not a handle class, return the modified object.
pd = pd.resetDefaults
pd =
If the PropertyDefaults class was a handle class, then you would not need to save the
object returned by the resetDefaults method. To design a handle compatible class like
Utility, ensure that all methods work with both kinds of classes.
Suppose that you define a class that subclasses a handle class, and the handle compatible
Utility class discussed in “A Handle Compatible Class” on page 12-41. The
HPropertyDefaults class has these characteristics:
12-43
12 How to Build on Other Classes
ans =
If you subclass both a value class that is not handle compatible and a handle compatible
class, the subclass is a nonhandle compatible value class. The ValueSub class:
12-44
See Also
ans =
See Also
Related Examples
• “Methods for Handle Compatible Classes” on page 12-46
12-45
12 How to Build on Other Classes
• If an input object is a handle object and the method alters the handle object, these
changes are visible to all workspaces that contain the same handle.
• If an input object is a value object, then changes to the object made inside the method
affect only the value inside the method workspace.
Handle compatible methods generally do not alter input objects because the effects of
such changes are not the same for handle and nonhandle objects.
See “Object Modification” on page 5-63 for information about modifying handle and value
objects.
12-46
See Also
See Also
Related Examples
• “Handle-Compatible Classes and Heterogeneous Arrays” on page 12-48
12-47
12 How to Build on Other Classes
In this section...
“Heterogeneous Arrays” on page 12-48
“Methods Must Be Sealed” on page 12-48
“Template Technique” on page 12-48
Heterogeneous Arrays
A heterogeneous array contains objects of different classes. Members of a heterogeneous
array have a common superclass, but can belong to different subclasses. See the
matlab.mixin.Heterogeneous class for more information on heterogeneous arrays.
The matlab.mixin.Heterogeneous class is a handle-compatible class.
Template Technique
Suppose that you implement a handle compatible class that works with heterogeneous
arrays. This approach enables you to seal public methods, while providing a way for each
subclass to specialize how the method works on each subclass instance. In the handle
compatible class:
12-48
See Also
See Also
Related Examples
• “Handle Compatible Classes” on page 12-39
12-49
12 How to Build on Other Classes
Built-in types define methods that perform operations on objects of these classes. For
example, you can perform operations on numeric arrays such as, sorting, arithmetic, and
logical operations.
See “Fundamental MATLAB Classes” for more information on MATLAB built-in classes.
Note It is an error to define a class that has the same name as a built-in class.
You cannot subclass any class that has its Sealed attribute set to true. To determine if
the class is Sealed, query the class metadata:
mc = ?ClassName;
mc.Sealed
A value of 0 indicates that the class is not Sealed and can be subclasses.
12-50
Subclasses of MATLAB Built-In Types
To see a list of functions that the subclass has inherited as methods, use the methods
function:
methods('SubclassName')
• Inherited methods
• Functions that normally accept input arguments of the same class as the superclass.
Built-in functions and methods that work on built-in classes can behave differently when
called with subclasses of built-in classes. Their behavior depends on which function you
are using and whether your subclass defines properties.
12-51
12 How to Build on Other Classes
Behavior Categories
When you call an inherited method on a subclass of a built-in class, the result depends on
the nature of the operation performed by the method. The behaviors of these methods fit
into several categories.
• Operations on data values return objects of the superclass. For example, if you
subclass double and perform addition on two subclass objects, MATLAB adds the
numeric values and returns a value of class double.
• Operations on the orientation or structure of the data return objects of the subclass.
Methods that perform these kinds of operations include, reshape, permute,
transpose, and so on.
• Converting a subclass object to a built-in class returns an object of the specified class.
Functions such as uint32, double, char work with subclass objects the same as they
work with built-in objects.
• Comparing objects or testing for inclusion in a specific set returns logical or built-in
objects, depending on the function. Functions such as isequal, ischar, isobject
work with subclass objects the same as they work with superclass objects.
• Indexing expressions return objects of the subclass. If the subclass defines properties,
then default indexing no longer works. The subclass must define its own indexing
methods.
• Concatenation returns an object of the subclass. If the subclass defines properties,
then default concatenation no longer works and the subclass must define its own
concatenation methods.
To list the built-in functions that work with a subclass of a built-in class, use the methods
function.
The subclass must define what indexing and concatenation mean for a class with
properties. If your subclass needs indexing and concatenation functionality, then the
subclass must implement the appropriate methods.
12-52
See Also
See Also
Related Examples
• “Representing Hardware with Classes” on page 12-83
• “Subclasses of Built-In Types with Properties” on page 12-68
• “Subclasses of Built-In Types Without Properties” on page 12-60
12-53
12 How to Build on Other Classes
Subclass double
Most built-in functions used with built-in classes are actually methods of the built-in class.
For example, the double and single classes define several methods to perform
arithmetic operations, indexing, matrix operation, and so on. All these built-in class
methods work with subclasses of the built-in class.
Subclassing double enables your class to use features without implementing the
methods that a MATLAB built-in class defines.
sc = DocSimpleDouble(1:10)
sc =
1x10 DocSimpleDouble:
double data:
1 2 3 4 5 6 7 8 9 10
12-54
Behavior of Inherited Built-In Methods
Call a method inherited from class double that operates on the data, such as sum. sum
returns a double and, therefore, uses the display method of class double:
sum(sc)
ans =
55
Index sc like an array of doubles. The returned value is the class of the subclass:
a = sc(2:4)
a =
1x3 DocSimpleDouble:
double data:
2 3 4
Indexed assignment works the same as the built-in class. The returned value is the class
of the subclass:
sc(1:5) = 5:-1:1
sc =
1x10 DocSimpleDouble:
double data:
5 4 3 2 1 6 7 8 9 10
Calling a method that modifies the order of the data elements operates on the data, but
returns an object of the subclass:
sc = DocSimpleDouble(1:10);
sc(1:5) = 5:-1:1;
a = sort(sc)
a =
1x10 DocSimpleDouble:
double data:
1 2 3 4 5 6 7 8 9 10
12-55
12 How to Build on Other Classes
sc = DocSimpleDouble(1:10);
a = sin(sc);
class(a)
ans =
double
sc = DocSimpleDouble(randi(9,1,10))
sc = DocSimpleDouble(randi(9,1,10))
sc =
1x10 DocSimpleDouble:
double data:
6 1 8 9 7 7 7 4 6 2
b = sort(sc)
b =
1x10 DocSimpleDouble:
double data:
1 2 4 6 6 7 7 7 8 9
• reshape
• permute
• sort
• transpose
• ctranspose
12-56
Behavior of Inherited Built-In Methods
For example, indexing element 2 in the DocSimpleDouble subclass object returns the
second element in the vector:
sc = DocSimpleDouble(1:10);
a = sc(2)
a =
DocSimpleDouble
double data:
2
The value returned from an indexing operation is an object of the subclass. You cannot
make indexed references if your subclass defines properties, unless your subclass
overrides the default subsref method.
Assigning a new value to the second element in the DocSimpleDouble object operates
only on the superclass data:
sc(2) = 12
sc =
1x10 DocSimpleDouble:
double data:
1 12 3 4 5 6 7 8 9 10
sc1 = DocSimpleDouble(1:10);
sc2 = DocSimpleDouble(11:20);
[sc1,sc2]
12-57
12 How to Build on Other Classes
ans =
1x20 DocSimpleDouble:
double data:
Columns 1 through 13
1 2 3 4 5 6 7 8 9 10 11 12 13
Columns 14 through 20
14 15 16 17 18 19 20
[sc1;sc2]
ans =
2x10 DocSimpleDouble:
double data:
1 2 3 4 5 6 7 8 9 10
11 12 13 14 15 16 17 18 19 20
c = cat(3,sc1,sc2)
c =
1x10x2 DocSimpleDouble:
double data:
(:,:,1) =
1 2 3 4 5 6 7 8 9 10
(:,:,2) =
11 12 13 14 15 16 17 18 19 20
If the subclass of a built-in class defines properties, you cannot concatenate objects of the
subclass. There is no way to determine how to combine properties of different objects.
However, your subclass can define custom horzcat and vertcat methods to support
concatenation in whatever way makes sense for your subclass.
See Also
Related Examples
• “Subclasses of Built-In Types Without Properties” on page 12-60
12-58
See Also
12-59
12 How to Build on Other Classes
For more information, see “Subclasses of MATLAB Built-In Types” on page 12-50.
• Capability to convert various classes of image data to uint8 to reduce object data
storage.
• A method to display the intensity images contained in the subclass objects.
• Ability to use all the methods supported by uint8 data (for example, size, indexing,
reshape, bitshift, cat, fft, arithmetic operators, and so on).
The class data are matrices of intensity image data stored in the superclass part of the
subclass object. This approach requires no properties.
The DocUint8 class stores the image data, which converts the data, if necessary:
12-60
Subclasses of Built-In Types Without Properties
if nargin == 0
data = uint8(0);
end
obj = obj@uint8(data); % Store data on superclass
end
function h = showImage(obj)
data = uint8(obj);
figure; colormap(gray(256))
h = imagesc(data,[0 255]);
axis image
brighten(.2)
end
end
end
The DocUint8 class provides a method to display all images stored as DocUint8 objects
in a consistent way. For example:
cir = imread('circuit.tif');
img1 = DocUint8(cir);
img1.showImage;
12-61
12 How to Build on Other Classes
50
100
150
200
250
Because DocUint8 subclasses uint8, you can use any uint8 methods. For example,
size(img1)
ans =
280 272
Indexing Operations
Inherited methods perform indexing operations, but return objects of the same class as
the subclass.
Therefore, you can index into the image data and call a subclass method:
12-62
Subclasses of Built-In Types Without Properties
showImage(img1(100:200,1:160));
10
20
30
40
50
60
70
80
90
100
20 40 60 80 100 120 140 160
img1(100:120,140:160) = 255;
img1.showImage;
12-63
12 How to Build on Other Classes
50
100
150
200
250
Concatenation Operations
Concatenation operations work on DocUint8 objects because this class inherits the
uint8 horzcat and vertcat methods, which return a DocUint8 object:
showImage([img1 img1]);
12-64
Subclasses of Built-In Types Without Properties
50
100
150
200
250
Data Operations
Methods that operate on data values, such as arithmetic operators, always return an
object of the built-in type (not of the subclass type). For example, multiplying DocUint8
objects returns a uint8 object:
a = img1.*1.8;
showImage(a);
To perform operations of this type, implement a subclass method to override the inherited
method. The times method implements array (element-by-element) multiplication.
12-65
12 How to Build on Other Classes
function o = times(obj,val)
u8 = uint8(obj).*val;
o = DocUint8(u8);
end
When you override a uint8 method, MATLAB calls the subclass method, not the base
class method. The subclass method must:
After adding the times method to the DocUint8 class, the output of multiplication
expressions is an object of the DocUint8 class:
showImage(img1.*1.8);
12-66
See Also
50
100
150
200
250
See Also
Related Examples
• “Operator Overloading” on page 17-47
• “Subclasses of Built-In Types with Properties” on page 12-68
12-67
12 How to Build on Other Classes
In this section...
“Specialized Numeric Types with Additional Data Storage” on page 12-68
“Subclasses with Properties” on page 12-68
“Property Added” on page 12-69
“Methods Implemented” on page 12-69
“Class Definition Code” on page 12-69
“Using ExtendDouble” on page 12-72
“Concatenation of ExtendDouble Objects” on page 12-75
Providing additional data storage in the subclass by defining properties can be a useful
extension to the built-in data class. However, the addition of properties to the subclass
requires the subclass to define methods to implement standard array behaviors.
For more information, see “Subclasses of MATLAB Built-In Types” on page 12-50.
This sample implementation of the ExtendDouble class derives from the double class
and defines a single property. The ExtendDouble class definition demonstrates how to
implement indexing and concatenation for subclasses of built-in classes
12-68
Subclasses of Built-In Types with Properties
Property Added
The ExtendDouble class defines the DataString property to contain text that describes
the data. The superclass part of the class contains the numeric data.
Methods Implemented
The following methods modify the behavior of the ExtendDouble class:
properties
DataString
end
methods
function obj = ExtendDouble(data,str)
if nargin == 0
12-69
12 How to Build on Other Classes
data = 0;
str = '';
elseif nargin == 1
str = '';
end
obj = obj@double(data);
obj.DataString = str;
end
12-70
Subclasses of Built-In Types with Properties
d = double(obj);
newd = subsasgn(d,s(2:end),b);
obj = ExtendDouble(newd,obj.DataString);
end
otherwise
error('Not a supported indexing expression')
end
case '()'
d = double(obj);
newd = subsasgn(d,s(1),b);
obj = ExtendDouble(newd,obj.DataString);
case '{}'
error('Not a supported indexing expression')
end
end
function disp(obj)
disp(obj.DataString)
disp(double(obj))
end
end
end
12-71
12 How to Build on Other Classes
Using ExtendDouble
Create an instance of ExtendDouble and notice that the display is different from the
default:
ed = ExtendDouble(1:10,'One to ten')
ed =
One to ten
1 2 3 4 5 6 7 8 9 10
Inherited Methods
The ExtendDouble class inherits methods from the class double. To see a list of all
public methods defined by the double class, use the methods function:
methods(double.empty)
The sum function continues to operate on the superclass part of the object:
sum(ed)
ans =
55
ans =
1 2 3 4 5 6 7 8 9 10
ans =
1 4 9 16 25 36 49 64 81 100
Subscripted Indexing
Because the ExtendDouble class defines a property, the class must implement its own
subsref and subsasgn methods.
12-72
Subclasses of Built-In Types with Properties
This class implements the following subscripted indexing expressions for reference and
assignment.
The class subsref method enables you to use ExtendDouble objects like numeric
arrays to reference the numeric data:
ed = ExtendDouble(1:10,'One to ten');
ed(10:-1:1)
ans =
One to ten
10 9 8 7 6 5 4 3 2 1
Access the numeric data of the ExtendDouble using property-style indexing with the
arbitrarily chosen name Data:
ed.Data(10:-1:1)
ans =
One to ten
10 9 8 7 6 5 4 3 2 1
ed.DataString
ans =
One to ten
ed = ExtendDouble(1:10,'One to ten');
ed(11:13) = [11,12,13];
ed.DataString = 'one to thirteen';
ed
12-73
12 How to Build on Other Classes
ed =
One to thirteen'
1 2 3 4 5 6 7 8 9 10 11 12 13
The ExtendDouble inherits converter methods from the double class. For example,
MATLAB calls the char method to perform this assignment statement.
ed(11:13) = ['a','b','c']
ed =
one to thirteen
1 2 3 4 5 6 7 8 9 10 97 98 99
The ExtendDouble implements two forms of indexed reference in the subsref method:
ed = ExtendDouble(1:10,'One to ten');
a = ed(1)
a =
One to ten
1
b = ed.Data(1)
b =
whos
12-74
Subclasses of Built-In Types with Properties
hcat = [ed1,ed2]
hcat =
Columns 1 through 13
1 2 3 4 5 6 7 8 9 10 10 9 8
Columns 14 through 20
7 6 5 4 3 2 1
whos
vcat = [ed1;ed2]
vcat =
1 2 3 4 5 6 7 8 9 10
10 9 8 7 6 5 4 3 2 1
Both horzcat and vertcat return a new object of the same class as the subclass.
12-75
12 How to Build on Other Classes
See Also
Related Examples
• “Subclasses of Built-In Types Without Properties” on page 12-60
12-76
Use of size and numel with Classes
The size and numel functions work consistently with arrays of user-defined objects.
There is generally no need to overload size or numel in user-defined classes.
Several MATLAB functions use size and numel to perform their operations. Therefore, if
you do overload either of these functions in your class, be sure that objects of your class
work as designed with other MATLAB functions.
ans =
1 10
12-77
12 How to Build on Other Classes
numel(d)
ans =
10
dsub = d(7:end);
size(dsub)
ans =
1 4
sd = SimpleDouble(1:10);
size(sd)
ans =
1 10
The numel function returns the number of elements in the superclass part:
12-78
Use of size and numel with Classes
numel(sd)
ans =
10
size([sd;sd])
ans =
2 10
numel([sd;sd])
ans =
20
The SimpleDouble class inherits the indexing behavior of the double class:
sdsub = sd(7:end);
size(sdsub)
ans =
1 4
classdef VerySimpleClass
properties
Value
end
end
vs = VerySimpleClass;
vs.Value = 1:10;
size(vs)
12-79
12 How to Build on Other Classes
ans =
1 1
numel(vs)
ans =
size([vs;vs])
ans =
2 1
numel([vs;vs])
ans =
size(vs.Value)
ans =
1 10
vssub = vs.Value(7:end);
size(vssub)
ans =
1 4
class(vs.Value)
ans =
double
12-80
Use of size and numel with Classes
vsArray(1:10) = VerySimpleClass;
isempty([vsArray(2:10).Value])
ans =
MATLAB does not apply scalar expansion to object array property value assignment. Use
the deal function for this purpose:
[vsArray.Value] = deal(1:10);
isempty([vsArray.Value])
ans =
The deal function assigns values to each Value property in the vsArray object array.
Indexing rules for object arrays are equivalent to the rules for arrays of struct:
vsArray(1).Value
ans =
1 2 3 4 5 6 7 8 9 10
vsArray(1).Value(6)
ans =
12-81
12 How to Build on Other Classes
Other MATLAB functions use the values returned by these functions. If you change the
way that size and numel behave, ensure that the values returned make sense for the
intended use of your class.
A(1:2).Prop
If you define a class in which nargout for subsref or nargin for subsasgn must be a
specific value, then overload numArgumentsFromSubscript to return that value.
See Also
numArgumentsFromSubscript
Related Examples
• “Modify nargout and nargin for Indexing Methods” on page 17-9
12-82
Representing Hardware with Classes
Objective
This example implements a class to represent an optical multiplex card. These cards
typically have several input ports and an output port. The MuxCard class represents the
ports by the port names and port data rates. The output rate of a multiplex card is the
sum of the input port data rates.
Implementation
Here is the definition of the MuxCard class. Notice that the input port rates initialize the
int32 portion of class.
12-83
12 How to Build on Other Classes
end
methods
function obj = MuxCard(inptnames, inptrates, outpname)
obj = obj@int32(inptrates);
obj.InPutNames = inptnames;
obj.OutPutName = outpname;
end
function x = get.OutPutRate(obj)
x = sum(obj);
end
function x = subsref(card, s)
if strcmp(s(1).type,'.')
base = subsref@int32(card, s(1));
if isscalar(s)
x = base;
else
x = subsref(base, s(2:end));
end
else
x = subsref(int32(card), s);
end
end
end
end
omx =
12-84
Representing Hardware with Classes
OutPutName: 'outp'
OutPutRate: 75
int32 data:
3 12 12 48
omx.InPutNames(omx==12)
ans =
'inp2' 'inp3'
omx == 12
ans =
0 1 1 0
Indexing the MuxCard object accesses the int32 vector of input port rates:
omx(1:2)
ans =
3 12
The OutPutRate property get access method uses sum to sum the output port rates:
omx.OutPutRate
ans =
75
12-85
12 How to Build on Other Classes
See Also
Related Examples
• “Subclasses of Built-In Types with Properties” on page 12-68
12-86
Determine Array Class
a = [2,5,7,11];
class(a)
ans =
double
ans =
char
a = [2,5,7,11];
isa(a,'double')
ans =
1
isa(a,'float')
ans =
1
12-87
12 How to Build on Other Classes
isa(a,'numeric')
ans =
1
isa returns true for classes derived from the specified class. For example, the SubInt
class derives from the built-in type int16:
By definition, an instance of the SubInt class is also an instance of the int16 class:
aInt = SubInt;
isa(aInt,'int16')
ans =
1
isa(aInt,'integer')
ans =
1
class(aInt)
12-88
Determine Array Class
ans =
SubInt
Use the strcmp function with the class function to check for a specific class of an
object:
a = int16(7);
strcmp(class(a),'int16')
ans =
1
Because the class function returns the class name as a char vector, the inheritance
does not affect the result of the comparison performed by strcmp:
aInt = SubInt;
strcmp(class(aInt),'int16')
ans =
0
Use the following techniques to exclude subclasses of built-in types from the input
arguments.
• Define a cell array that contains the names of built-in types accepted by your function.
• Call class and strcmp to test for specific types in a MATLAB control statement.
if strcmp(class(inputArg),'single')
% Call function
else
inputArg = single(inputArg);
end
12-89
12 How to Build on Other Classes
Suppose that you create a MEX-function, myMexFcn, that requires two numeric inputs
that must be of type double or single:
outArray = myMexFcn(a,b)
Define a cell array that contains the character arrays double and single:
floatTypes = {'double','single'};
Use isobject to separate built-in types from subclasses of built-in types. The isobject
function returns false for instances of built-in types:
ans =
0
12-90
Abstract Classes
Abstract Classes
In this section...
“Abstract Classes” on page 12-91
“Declare Classes as Abstract” on page 12-92
“Determine If a Class Is Abstract” on page 12-93
“Find Inherited Abstract Properties and Methods” on page 12-94
Abstract Classes
Abstract classes are useful for describing functionality that is common to a group of
classes, but requires unique implementations within each class.
abstract class — A class that cannot be instantiated, but that defines class components
used by subclasses.
concrete class — A class that can be instantiated. Concrete classes contain no abstract
members.
An abstract class serves as a basis (that is, a superclass) for a group of related subclasses.
An abstract class can define abstract properties and methods that subclasses implement.
Each subclass can implement the concrete properties and methods in a way that supports
their specific requirements.
A subclass must implement all inherited abstract properties and methods to become a
concrete class. Otherwise, the subclass is itself an abstract class.
12-91
12 How to Build on Other Classes
MATLAB does not force subclasses to implement concrete methods with the same
signature or attributes.
Abstract classes:
If a subclass of an abstract class does not define concrete implementations for all
inherited abstract methods or properties, it is also abstract.
Abstract Class
• Concrete subclasses must redefine any properties or methods that are declared as
abstract.
• The abstract class does not need to define any abstract methods or properties.
When you define any abstract methods or properties, MATLAB automatically sets the
class Abstract attribute to true.
Abstract Methods
12-92
Abstract Classes
methods (Abstract)
abstMethod(obj)
end
• Do not use a function...end block to define an abstract method, use only the
method signature.
• Abstract methods have no implementation in the abstract class.
• Concrete subclasses are not required to support the same number of input and output
arguments and do not need to use the same argument names. However, subclasses
generally use the same signature when implementing their version of the method.
Abstract Properties
properties (Abstract)
AbsProp
end
For more information on access methods, see “Property Access Methods” on page 8-50.
classdef AbsClass
methods(Abstract)
result = absMethodOne(obj)
12-93
12 How to Build on Other Classes
output = absMethodTwo(obj)
end
end
Use the logical value of the meta.class Abstract property to determine if the class is
abstract:
mc = ?AbsClass;
if ~mc.Abstract
% not an abstract class
end
meta.abstractDetails('AbsClass');
For example, suppose that you create a subclass of the AbsClass class that is defined in
the previous section. In this case, the subclass implements only one of the abstract
methods defined by AbsClass.
12-94
See Also
meta.abstractDetails(?SubAbsClass)
The SubAbsClass class is abstract because it has not implemented the absMethodOne
method defined in AbsClass.
msub = ?SubAbsClass;
msub.Abstract
ans =
If you implement both methods defined in AbsClass, the subclass becomes concrete.
See Also
Related Examples
• “Define an Interface Superclass” on page 12-96
12-95
12 How to Build on Other Classes
Interfaces
The properties and methods defined by a class form the interface that determines how
class users interact with objects of the class. When creating a group of related classes,
interfaces define a common interface to all these classes. The actual implementations of
the interface can differ from one class to another.
Consider a set of classes designed to represent various types of graphs. All classes must
implement a Data property to contain the data used to generate the graph. However, the
form of the data can differ considerably from one type of graph to another. Each class can
implement the Data property differently.
The same differences apply to methods. All classes can have a draw method that creates
the graph, but the implementation of this method changes with the type of graph.
The basic idea of an interface class is to specify the properties and methods that each
subclass must implement without defining the actual implementation. This approach
enables you to enforce a consistent interface to a group of related objects. As you add
more classes in the future, the interface remains the same.
This approach enforces the use of a consistent interface while providing the necessary
flexibility to implement the internal workings of each specialized subclass differently.
In this example, a package folder contains the interface, derived subclasses, and a utility
function:
+graphics/GraphInterface.m % abstract interface class
+graphics/LineGraph.m % concrete subclass
12-96
Define an Interface Superclass
The graph class specifies the following properties, which the subclasses must define:
• Primitive — Handle of the graphics object used to implement the specialized graph.
The class user has no need to access these objects directly so this property has
protected SetAccess and GetAccess.
• AxesHandle — Handle of the axes used for the graph. The specialized graph objects
can set axes object properties. This property has protected SetAccess and
GetAccess.
• Data — All subclasses of the GraphInterface class must store data. The type of data
varies and each subclass defines the storage mechanism. Subclass users can change
the data values so this property has public access rights.
The GraphInterface class names three abstract methods that subclasses must
implement. The GraphInterface class also suggests in comments that each subclass
constructor must accept the plot data and property name/property value pairs for all class
properties.
• Subclass constructor — Accept data and P/V pairs and return an object.
• draw — Used to create a drawing primitive and render a graph of the data according
to the type of graph implemented by the subclass.
• zoom — Implementation of a zoom method by changing the axes CameraViewAngle
property. The interface suggests the use of the camzoom function for consistency
among subclasses. The zoom buttons created by the addButtons static method use
this method as a callback.
• updateGraph — Method called by the set.Data method to update the plotted data
whenever the Data property changes.
The package of classes that derive from the GraphInterface abstract class implement
the following behaviors:
12-97
12 How to Build on Other Classes
The GraphInterface class is an abstract class that defines the methods and properties
used by the subclasses. Comments in the abstract class describe the intended
implementation:
methods
function set.Data(obj,newdata)
obj.Data = newdata;
updateGraph(obj)
end
function addButtons(gobj)
hfig = get(gobj.AxesHandle,'Parent');
uicontrol(hfig,'Style','pushbutton','String','Zoom Out',...
'Callback',@(src,evnt)zoom(gobj,.5));
uicontrol(hfig,'Style','pushbutton','String','Zoom In',...
12-98
Define an Interface Superclass
'Callback',@(src,evnt)zoom(gobj,2),...
'Position',[100 20 60 20]);
end
end
end
The GraphInterface class implements the property set method (set.Data) to monitor
changes to the Data property. An alternative is to define the Data property as Abstract
and enable the subclasses to determine whether to implement a set access method for
this property. The GraphInterface class defines a set access method that calls an
abstract method (updateGraph, which each subclass must implement). The
GraphInterface interface imposes a specific design on the whole package of classes,
without limiting flexibility.
The addButtons method adds push buttons for the zoom methods, which each subclass
must implement. Using a method instead of an ordinary function enables addButtons to
access the protected class data (the axes handle). Use the object zoom method as the
push-button callback.
function addButtons(gobj)
hfig = get(gobj.AxesHandle,'Parent');
uicontrol(hfig,'Style','pushbutton',...
'String','Zoom Out',...
'Callback',@(src,evnt)zoom(gobj,.5));
uicontrol(hfig,'Style','pushbutton',...
'String','Zoom In',...
'Callback',@(src,evnt)zoom(gobj,2),...
'Position',[100 20 60 20]);
end
This example defines only a single subclass used to represent a simple line graph. It
derives from GraphInterface, but provides implementations for the abstract methods
draw, zoom, updateGraph, and its own constructor. The base class GraphInterface
and subclass are all contained in a package (graphics), which you must use to reference
the class name:
12-99
12 How to Build on Other Classes
Add Properties
The LineGraph class implements the interface defined in the GraphInterface class
and adds two additional properties—LineColor and LineType. This class defines initial
values for each property, so specifying property values in the constructor is optional. You
can create a LineGraph object with no data, but you cannot produce a graph from that
object.
properties
LineColor = [0 0 0];
LineType = '-';
end
The constructor accepts a struct with x and y coordinate data, and property name/
property value pairs:
The LineGraph draw method uses property values to create a line object. The
LineGraph class stores the line handle as protected class data. To support the use of no
input arguments for the class constructor, draw checks the Data property to determine if
it is empty before proceeding:
12-100
Define an Interface Superclass
gobj.AxesHandle = get(h,'Parent');
end
The LineGraph zoom method follows the comments in the GraphInterface class which
suggest using the camzoom function. camzoom provides a convenient interface to
zooming and operates correctly with the push buttons created by the addButtons
method.
Property set methods provide a convenient way to execute code automatically when the
value of a property changes for the first time in a constructor. (See “Property Set
Methods” on page 8-56.) The linegraph class uses set methods to update the line
primitive data (which causes a redraw of the plot) whenever a property value changes.
The use of property set methods provides a way to update the data plot quickly without
requiring a call to the draw method. The draw method updates the plot by resetting all
values to match the current property values.
Three properties use set methods: LineColor, LineType, and Data. LineColor and
LineType are properties added by the LineGraph class and are specific to the line
primitive used by this class. Other subclasses can define different properties unique to
their specialization (for example, FaceColor).
The GraphInterface class implements the Data property set method. However, the
GraphInterface class requires each subclass to define a method called updateGraph,
which handles the update of plot data for the specific drawing primitive used.
methods
function gobj = LineGraph(data,varargin)
if nargin > 0
gobj.Data = data;
12-101
12 How to Build on Other Classes
if nargin > 1
for k=1:2:length(varargin)
gobj.(varargin{k}) = varargin{k+1};
end
end
end
end
function zoom(gobj,factor)
camzoom(gobj.AxesHandle,factor)
end
function updateGraph(gobj)
set(gobj.Primitive,...
'XData',gobj.Data.x,...
'YData',gobj.Data.y)
end
function set.LineColor(gobj,color)
gobj.LineColor = color;
set(gobj.Primitive,'Color',color)
end
function set.LineType(gobj,ls)
gobj.LineType = ls;
set(gobj.Primitive,'LineStyle',ls)
end
end
end
12-102
Define an Interface Superclass
The LineGraph class defines the simple API specified by the graph base class and
implements its specialized type of graph:
d.x = 1:10;
d.y = rand(10,1);
lg = graphics.LineGraph(d,'LineColor','b','LineType',':');
lg.draw;
lg.addButtons;
Clicking the Zoom In button shows the zoom method providing the callback for the
button.
12-103
12 How to Build on Other Classes
d.y = rand(10,1);
lg.Data = d;
lg.LineColor = [0.9,0.1,0.6];
12-104
See Also
See Also
Related Examples
• “Abstract Classes” on page 12-91
12-105
13
• The full name of the object class, including any package qualifiers
• Values of dynamic properties
• All property default values defined by the class at the time the first object of the class
is saved to the MAT-file.
• The names and values of all properties, with the following exceptions:
• Properties are not saved if their current values are the same as the default values
specified in the class definition.
• Properties are not saved if their Transient, Constant, or Dependent attributes
set to true.
For a description of property attributes, see “Specify Property Attributes” on page 8-7
Note Do not use the pack command with objects that define events and listeners. The
pack command causes the destruction of any listeners defined for the objects in the
13-2
Save and Load Process for Objects
workspace. For information on restoring listeners when saving objects, see “Restore
Listeners” on page 13-36.
MATLAB calls property set methods to ensure that property values are still valid in cases
where the class definition has changed.
For information on property set methods, see “Property Set Methods” on page 8-56.
When an error occurs while an object is being loaded from a file, MATLAB does one of the
following:
• If the class defines a loadobj method, MATLAB returns the saved values to the
loadobj method in a struct.
• If the class does not define a loadobj method, MATLAB silently ignores the errors.
The load function reconstitutes the object with property values that do not produce
an error.
In the struct passed to the loadobj method, the field names correspond to the
property names. The field values are the saved values for the corresponding properties.
13-3
13 Saving and Loading Objects
If the saved object derives from multiple superclasses that have private properties with
same name, the struct contains only the property value of the most direct superclass.
For information on how to implement saveobj and loadobj methods, see “Modify the
Save and Load Process” on page 13-16.
If a class definition changes property validation such that loaded property values are no
longer valid, MATLAB substitutes the currently defined default value for that property.
The class can define a loadobj method or converter methods to provide compatibility
among class versions.
For information on property validation, see “Validate Property Values” on page 8-24
See Also
Related Examples
• “Object Save and Load”
13-4
Reduce MAT-File Size for Saved Objects
In this section...
“Default Values” on page 13-5
“Dependent Properties” on page 13-5
“Transient Properties” on page 13-5
“Avoid Saving Unwanted Variables” on page 13-6
Default Values
If a property often has the same value, define a default value for that property. When the
user saves the object to a MAT-file, MATLAB does not save the value of a property if the
current value equals the default value. MATLAB saves the default value on a per class
basis to avoid saving the value for every object.
For more information on how MATLAB evaluates default value expressions, see “Property
Default Values” on page 8-18.
Dependent Properties
Use a dependent property when the property value must be calculated at run time. A
dependent property is not saved in the MAT-file when you save an object. Instances of the
class do not allocate memory to hold a value for a dependent property.
Dependent is a property attribute (see “Property Attributes” on page 8-9 for a complete
list.)
Transient Properties
MATLAB does not store the values of transient properties. Transient properties can store
data in the object temporarily as an intermediate computation step or for faster retrieval.
Use transient properties when you easily can reproduce the data at run time or when the
data represents intermediate state that can be discarded.
13-5
13 Saving and Loading Objects
See Also
Related Examples
• “Modify the Save and Load Process” on page 13-16
• “Object Save and Load”
13-6
Save Object Data to Recreate Graphics Objects
What to Save
Use transient properties to avoid saving what you can recreate when loading the object.
For example, an object can contain component parts that you can regenerate from data
that is saved. Regenerating these components also enables newer versions of the class to
create the components in a different way.
The Chart property contains the handle to the bar chart. When you save a bar chart,
MATLAB also saves the figure, axes, and Bar object and the data required to create these
graphics objects. The YearlyRainfall class design eliminates the need to save objects
that it can regenerate:
• The Chart property is Transient so the graphics objects are not saved.
• ChartData is a private property that provides storage for the Bar object data
(YData).
• The load function calls the set.ChartData method, passing it the saved bar chart
data.
• The setup method regenerates the bar chart and assigns the handle to the Chart
property. Both the class constructor and the set.ChartData method call setup.
13-7
13 Saving and Loading Objects
Year
end
properties(Transient)
Chart
end
properties(Access = private)
ChartData
end
methods
function rf = YearlyRainfall(data)
setup(rf,data);
end
function set.ChartData(obj,V)
setup(obj,V);
end
function V = get.ChartData(obj)
V = obj.Chart.YData;
end
end
methods(Access = private)
function setup(rf,data)
rf.Chart = bar(data);
end
end
end
For example, change the type of graph from a bar chart to a stair-step graph by modifying
the setup method:
methods(Access = private)
function setup(rf,data)
rf.Chart = stairs(data);
end
end
13-8
See Also
See Also
Related Examples
• “Modify the Save and Load Process” on page 13-16
• “Object Save and Load”
13-9
13 Saving and Loading Objects
Version Compatibility
Default property values can help you implement version compatibility for saved objects.
For example, suppose that you add a property to version 2 of your class. Having a default
value enables MATLAB to assign a value to the new property when loading a version 1
object.
classdef EmployeeInfo
properties
Name
JobTitle
Department
end
end
Version 2 of the EmployeeInfo class adds a property, Country, for the country name of
the employee location. The Country property has a default value of 'USA'.
classdef EmployeeInfo
properties
Name
JobTitle
Department
Country = 'USA'
13-10
See Also
end
end
• MATLAB assigns an empty double [] to properties that do not have default values
defined by the class. Empty double is not a valid value for the Country property.
• In version 1, all employees were in the USA. Therefore, any version 1 object loaded
into version 2 receives a valid value for the Country property.
See Also
Related Examples
• “Modify the Save and Load Process” on page 13-16
• “Object Save and Load”
13-11
13 Saving and Loading Objects
In this section...
“Control Property Loading” on page 13-12
“Dependent Property with Private Storage” on page 13-13
“Property Value Computed from Other Properties” on page 13-14
Suppose that your class design is such that both of the following are true:
Then the final state of an object after changing a series of property values can depend on
the order in which you set the properties. This order dependency can affect the result of
loading an object.
The load function sets property values in a particular order. This order can be different
from the order in which you set the properties in the saved object. As a result, the loaded
object can have different property values than the object had when it was saved.
If a property set function changes the values of other properties, then define the
Dependent attribute of that property as true. MATLAB does not save or restore
dependent property values.
Use nondependent properties for storing the values set by the dependent property. Then
the load function restores the nondependent properties with the same values that were
saved. The load function does not call the dependent property set method because there
is no value in the saved file for that property.
13-12
Avoid Property Initialization Order Dependency
• The Units property is dependent. Its property set method sets the TotalDistance
property. Therefore load does not call the Units property set method.
• The load function restores TotalDistance to whatever value it had when you saved
the object.
classdef Odometer
properties(Constant)
ConversionFactor = 1.6
end
properties
TotalDistance = 0
end
properties(Dependent)
Units
end
properties(Access=private)
PrivateUnits = 'mi'
end
methods
function unit = get.Units(obj)
unit = obj.PrivateUnits;
end
function obj = set.Units(obj,newUnits)
% validate newUnits to be a char vector
switch(newUnits)
case 'mi'
if strcmp(obj.PrivateUnits,'km')
obj.TotalDistance = obj.TotalDistance / ...
obj.ConversionFactor;
obj.PrivateUnits = newUnits;
end
case 'km'
if strcmp(obj.PrivateUnits,'mi')
obj.TotalDistance = obj.TotalDistance * ...
obj.ConversionFactor;
obj.PrivateUnits = newUnits;
end
otherwise
error('Odometer:InvalidUnits', ...
13-13
13 Saving and Loading Objects
Suppose that you create an instance of Odometer and set the following property values:
odObj = Odometer;
odObj.Units = 'km';
odObj.TotalDistance = 16;
If the Units property was not Dependent, loading it calls its set method and causes the
TotalDistance property to be set again.
The class avoids order dependence when initializing property values during the load
process by making the TripDistance property dependent. MATLAB does not save or
load a value for the TripDistance property, but does save and load values for the two
properties used to calculate TripDistance in its property get method.
classdef Odometer2
properties
13-14
See Also
TotalDistance = 0
TripMarker = 0
end
properties(Dependent)
TripDistance
end
methods
function distance = get.TripDistance(obj)
distance = obj.TotalDistance - obj.TripMarker;
end
end
end
See Also
Related Examples
• “Modify the Save and Load Process” on page 13-16
• “Object Save and Load”
13-15
13 Saving and Loading Objects
In this section...
“When to Modify the Save and Load Process” on page 13-16
“How to Modify the Save and Load Process” on page 13-16
“Implementing saveobj and loadobj Methods” on page 13-17
“Additional Considerations” on page 13-17
• Rename a class
• Remove properties
• Define a circular reference of handle objects where initialization order is important
• Must call the constructor with arguments and, therefore, cannot use
ConstructOnLoad
The save function calls your class saveobj method before performing the save
operation. The save function then saves the value returned by the saveobj method. You
can use saveobj to return a modified object or a struct that contains property values.
load calls your class loadobj method after loading the object. The load function loads
the value returned by the loadobj method into the workspace. A loadobj method can
modify the object being loaded or can reconstruct an object from the data saved by the
class saveobj method.
13-16
Modify the Save and Load Process
Implement the loadobj method as a Static method because MATLAB can call the
loadobj method with a struct instead of an object of the class.
Implement the saveobj method as an ordinary method (that is, calling it requires an
instance of the class).
MATLAB saves the object class name so that load can determine which loadobj method
to call in cases where your saveobj method saves only the object data in a structure.
Therefore, the class must be accessible to MATLAB when you load the object.
• The class definition has changed since the object was saved, requiring you to modify
the object before loading.
• A saveobj method modified the object during the save operation, possibly saving data
in a struct. Implement the loadobj method to reconstruct the object from the
output of saveobj.
Additional Considerations
When you decide to modify the default save and load process, keep the following points in
mind:
• If loading any property value from the MAT-file produces an error, load passes a
struct to loadobj. The struct field names correspond to the property names
extracted from the file.
• loadobj must always be able to accept a struct as input and return an object, even
if there is no saveobj or saveobj does not return a struct.
• If saveobj returns a struct, then load always passes that struct to loadobj.
• Subclass objects inherit superclass loadobj and saveobj methods. Therefore, if you
do not implement a loadobj or saveobj method in the subclass, MATLAB calls only
the inherited methods.
13-17
13 Saving and Loading Objects
more information, see “Save and Load Objects from Class Hierarchies” on page 13-
33.
• The load function does not call the constructor by default. For more information, see
“Initialize Objects When Loading” on page 13-30.
See Also
Related Examples
• “Basic saveobj and loadobj Pattern” on page 13-19
• “Object Save and Load”
13-18
Basic saveobj and loadobj Pattern
In this section...
“Using saveobj and loadobj” on page 13-19
“Handle Load Problems” on page 13-20
• Use saveobj to save all essential data in a struct and do not save the object.
• Use loadobj to reconstruct the object from the saved data.
This approach is not useful in cases where you cannot save property values in a struct
field. Data that you cannot save, such as a file identifier, you can possibly regenerate in
the loadobj method.
saveobj
For this pattern, define saveobj as an ordinary method that accepts an object of the
class and returns a struct.
methods
function s = saveobj(obj)
s.Prop1 = obj.Prop1;
s.Prop2 = obj.Prop2
s.Data = obj.GraphHandle.YData;
end
end
13-19
13 Saving and Loading Objects
loadobj
Define loadobj as a static method. Create an object by calling the class constructor.
Then assign values to properties from the struct passed to loadobj. Use the data to
regenerate properties that were not saved.
methods(Static)
function obj = loadobj(s)
if isstruct(s)
newObj = ClassConstructor;
newObj.Prop1 = s.Prop1;
newObj.Prop2 = s.Prop2
newObj.GraphHandle = plot(s.Data);
obj = newObj;
else
obj = s;
end
end
end
If the load function encounters an error, load passes loadobj a struct instead of an
object. Your loadobj method must always be able to handle a struct as the input
argument. The input to loadobj is always a scalar.
classdef GraphExpression
properties
FuncHandle
Range
end
methods
function obj = GraphExpression(fh,rg)
obj.FuncHandle = fh;
obj.Range = rg;
makeGraph(obj)
end
13-20
Basic saveobj and loadobj Pattern
function makeGraph(obj)
rg = obj.Range;
x = min(rg):max(rg);
data = obj.FuncHandle(x);
plot(data)
end
end
methods (Static)
function obj = loadobj(s)
if isstruct(s)
fh = s.FuncHandle;
rg = s.Range;
obj = GraphExpression(fh,rg);
else
makeGraph(s);
obj = s;
end
end
end
end
h = GraphExpression(@(x)x.^4,[1:25])
h =
FuncHandle: @(x)x.^4
Range: [1x25 double]
save myFile h
close
load myFile h
If the load function cannot create the object and passes a struct to loadobj, loadobj
attempts to create an object with the data supplied.
13-21
13 Saving and Loading Objects
See Also
Related Examples
• “Modify the Save and Load Process” on page 13-16
• “Object Save and Load”
13-22
Maintain Class Compatibility
Rename Property
Suppose that you want to rename a property, but do not want to cause errors in existing
code that refer to the original property. For example, rename a public property called
OfficeNumber to Location. Here is the original class definition:
classdef EmployeeList
properties
Name
Email
OfficeNumber % Rename as Location
end
end
• In the class definition, set the OfficeNumber property attributes to Dependent and
Hidden.
• Create a property set method for OfficeNumber that sets the value of the Location
property.
• Create a property get method for OfficeNumber that returns the value of the
Location location property.
While the OfficeNumber property is hidden, existing code can continue to access this
property. The Hidden attribute does not affect access.
13-23
13 Saving and Loading Objects
classdef EmployeeList
properties
Name
Email
Location
end
properties (Dependent, Hidden)
OfficeNumber
end
methods
function obj = set.OfficeNumber(obj,val)
obj.Location = val;
end
function val = get.OfficeNumber(obj)
val = obj.Location;
end
end
end
You can load old instances of the EmployeeList class in the presence of the new class
version. Code that refers to the OfficeNumber property continues to work.
Suppose that you want to be able to load new EmployeeList objects into systems that
still have the old version of the EmployeeList class. To achieve compatibility with old
and new versions:
In this version of the EmployeeList class, the OfficeNumber property saves the value
used by the Location property. Loading an object assigns values of the three original
properties (Name, Email, and OfficeNumber), but does not assign a value to the new
Location property. The lack of the Location property in the old class definition is not a
problem.
classdef EmployeeList
properties
Name
Email
13-24
Maintain Class Compatibility
end
properties (Dependent)
Location
end
properties (Hidden)
OfficeNumber
end
methods
function obj = set.Location(obj,val)
obj.OfficeNumber = val;
end
function val = get.Location(obj)
val = obj.OfficeNumber;
end
end
end
Consider a class that has an AccountID property. Suppose that all account numbers must
migrate from eight-digit numeric values to 12-element character arrays.
• Tests to determine if the load function passed a struct or object. All loadobj
methods must handle both struct and object when there is an error in load.
• Tests to determine if the AccountID number contains eight digits. If so, change it to a
12-element character array by calling the paddAccID method.
After updating the AccountID property, loadobj returns a MyAccount object that
MATLAB loads into the workspace.
classdef MyAccount
properties
AccountID
end
methods
13-25
13 Saving and Loading Objects
You do not need to implement a saveobj method. You are using loadobj only to ensure
that older saved objects are brought up to date while loading.
Suppose that you define a class to represent an entry in a phone book. The
PhoneBookEntry class defines three properties: Name, Address, and PhoneNumber.
classdef PhoneBookEntry
properties
Name
Address
PhoneNumber
end
end
However, in future releases, the class adds more properties. To provide flexibility,
PhoneBookEntry saves property data in a struct using its saveobj method.
13-26
Maintain Class Compatibility
methods
function s = saveobj(obj)
s.Name = obj.Name;
s.Address = obj.Address;
s.PhoneNumber = obj.PhoneNumber;
end
end
The loadobj method creates the PhoneBookEntry object, which is then loaded into the
workspace.
methods (Static)
function obj = loadobj(s)
if isstruct(s)
newObj = PhoneBookEntry;
newObj.Name = s.Name;
newObj.Address = s.Address;
newObj.PhoneNumber = s.PhoneNumber;
obj = newObj;
else
obj = s;
end
end
end
With these changes, you could not load a version 2 object in a previous release. However,
version 2 employs several techniques to enable compatibility:
13-27
13 Saving and Loading Objects
• When the loadobj method sets the Address property, it invokes the property set
method (set.Address), which extracts the substrings required by the
StreetAddress, City, State, and ZipCode properties.
• The Transient (not saved) property SaveInOldFormat enables you to specify
whether to save the version 2 object as a struct or an object.
classdef PhoneBookEntry
properties
Name
StreetAddress
City
State
ZipCode
PhoneNumber
end
properties (Constant)
Sep = ', '
end
properties (Dependent, SetAccess=private)
Address
end
properties (Transient)
SaveInOldFormat = false;
end
methods (Static)
function obj = loadobj(s)
if isstruct(s)
obj = PhoneBookEntry;
obj.Name = s.Name;
obj.Address = s.Address;
obj.PhoneNumber = s.PhoneNumber;
else
obj = s;
end
end
end
methods
function address = get.Address(obj)
address = [obj.StreetAddress,obj.Sep,obj.City,obj.Sep,...
obj.State,obj.Sep,obj.ZipCode];
end
function obj = set.Address(obj,address)
addressItems = regexp(address,obj.Sep,'split');
if length(addressItems) == 4
13-28
See Also
obj.StreetAddress = addressItems{1};
obj.City = addressItems{2};
obj.State = addressItems{3};
obj.ZipCode = addressItems{4};
else
error('PhoneBookEntry:InvalidAddressFormat', ...
'Invalid address format.');
end
end
function s = saveobj(obj)
if obj.SaveInOldFormat
s.Name = obj.Name;
s.Address = obj.Address;
s.PhoneNumber = obj.PhoneNumber;
end
end
end
end
See Also
Related Examples
• “Modify the Save and Load Process” on page 13-16
• “Object Save and Load”
13-29
13 Saving and Loading Objects
Enable ConstructOnLoad when you do not want to implement a loadobj method, but
must perform some actions at construction time. For example, enable ConstructOnLoad
when you are registering listeners for another object. Ensure that MATLAB can call the
class constructor with no arguments without generating an error.
Attributes set on superclasses are not inherited by subclasses. Therefore, MATLAB does
use the value of the superclass ConstructOnLoad attribute when loading objects. If you
want MATLAB to call the class constructor, set the ConstructOnLoad attribute in your
specific subclass.
The LabResults class shares the constructor object initialization steps with the
loadobj method by performing these steps in the assignStatus method.
classdef LabResult
properties
13-30
Initialize Objects When Loading
CurrentValue
end
properties (Transient)
Status
end
methods
function obj = LabResult(cv)
obj.CurrentValue = cv;
obj = assignStatus(obj);
end
function obj = assignStatus(obj)
v = obj.CurrentValue;
if v < 10
obj.Status = 'Too low';
elseif v >= 10 && v < 100
obj.Status = 'In range';
else
obj.Status = 'Too high';
end
end
end
methods (Static)
function obj = loadobj(s)
if isstruct(s)
cv = s.CurrentValue;
obj = LabResults(cv);
else
obj = assignStatus(s);
end
end
end
end
The LabResults class uses loadobj to determine the status of a given test value. This
approach provides a way to:
13-31
13 Saving and Loading Objects
See Also
Related Examples
• “Modify the Save and Load Process” on page 13-16
• “Object Save and Load”
13-32
Save and Load Objects from Class Hierarchies
• Superclasses implement saveobj methods to save their property data in the struct.
• The subclass saveobj method calls each superclass saveobj method and returns the
completed struct to the save function. Then the save function writes the struct to
the MAT-file.
• The subclass loadobj method creates a subclass object and calls superclass methods
to assign their property values in the subclass object.
• The subclass loadobj method returns the reconstructed object to the load function,
which loads the object into the workspace.
The following superclass (MySuper) and subclass (MySub) definitions show how to code
these methods.
13-33
13 Saving and Loading Objects
• The MySuper class defines a loadobj method to enable an object of this class to be
loaded directly.
• The subclass loadobj method calls a method named reload after it constructs the
subclass object.
• reload first calls the superclass reload method to assign superclass property values
and then assigns the subclass property value.
classdef MySuper
properties
X
Y
end
methods
function S = saveobj(obj)
S.PointX = obj.X;
S.PointY = obj.Y;
end
function obj = reload(obj,S)
obj.X = S.PointX;
obj.Y = S.PointY;
end
end
methods (Static)
function obj = loadobj(S)
if isstruct(s)
obj = MySuper;
obj = reload(obj,S);
end
end
end
end
Call the superclass saveobj and loadobj methods from the subclass saveobj and
loadobj methods.
13-34
See Also
end
function obj = reload(obj,S)
obj = reload@MySuper(obj,S);
obj.Z = S.PointZ;
end
end
methods (Static)
function obj = loadobj(S)
if isstruct(s)
obj = MySub;
obj = reload(obj,S);
end
end
end
end
See Also
Related Examples
• “Modify the Save and Load Process” on page 13-16
• “Object Save and Load”
13-35
13 Saving and Loading Objects
Restore Listeners
In this section...
“Create Listener with loadobj” on page 13-36
“Use Transient Property to Load Listener” on page 13-36
“Using the BankAccount and AccountManager Classes” on page 13-38
When the AccountBalance property value changes, the listener callback determines the
account status. Important points include:
13-36
Restore Listeners
AccountStatus
end
methods
function obj = BankAccount(initialBalance)
obj.AccountBalance = initialBalance;
obj.AccountStatus = 'New Account';
obj.AccountManagerListener = AccountManager.addAccount(obj);
end
end
methods (Static)
function obj = loadobj(obj)
if isstruct(obj) % Handle error
initialBalance = obj.AccountBalance;
obj = BankAccount(initialBalance);
else
obj.AccountManagerListener = AccountManager.addAccount(obj);
end
end
end
end
Assume the AccountManager class provides services for various types of accounts. For
the BankAccount class, the AccountManager class defines two Static methods:
classdef AccountManager
methods (Static)
function assignStatus(BA,~)
if BA.AccountBalance < 0 && BA.AccountBalance >= -100
BA.AccountStatus = 'overdrawn';
elseif BA.AccountBalance < -100
BA.AccountStatus = 'frozen';
else
BA.AccountStatus = 'open';
end
end
function lh = addAccount(BA)
lh = addlistener(BA,'AccountBalance','PostSet', ...
@(src,evt)AccountManager.assignStatus(BA));
end
13-37
13 Saving and Loading Objects
end
end
ba = BankAccount(100)
ba =
AccountBalance: 100
AccountManagerListener: [1x1 event.proplistener]
AccountStatus: 'New Account'
Now set an account value to confirm that the AccountManager sets AccountStatus
appropriately:
ba.AccountBalance = -10;
ba.AccountStatus
ans =
overdrawn
See Also
Related Examples
• “Modify the Save and Load Process” on page 13-16
• “Property Attributes” on page 8-9
• “Listen for Changes to Property Values” on page 11-40
• “Object Save and Load”
13-38
14
Enumerations
Named Values
In this section...
“Kinds of Predefined Names” on page 14-2
“Techniques for Defining Enumerations” on page 14-3
• Constant properties
• Enumerations
Constant Properties
Use constant properties when you want a collection of related constant values whose
values can belong to different types (numeric values, character strings, and so on). Define
properties with constant values by setting the property Constant attribute. Reference
constant properties by name whenever you need access to that particular value.
See “Define Class Properties with Constant Values” on page 15-2 for more information.
Enumerations
Use enumerations when you want to create a fixed set of names representing a single
type of value. Use this new type in multiple places without redefining it for each class.
You can derive enumeration classes from other classes to inherit the operations of the
superclass. For example, if you define an enumeration class that subclasses a MATLAB
numeric class like double or int32, the enumeration class inherits all the mathematical
and relational operations that MATLAB defines for those classes.
14-2
Named Values
(from [1 0 0] to [.93 .14 .14], for example) without updating every function that
accepts colors, as you would if you defined the color as the char vector 'red'.
You can define enumeration classes in ways that are most useful to your application, as
described in the following sections.
Simple enumeration classes have no superclasses and no properties. These classes define
a set of related names that have no underlying values associated with them. Use this kind
of enumeration when you want descriptive names, but your application does not require
specific information associated with the name.
See the WeekDays class in the “Enumeration Class” on page 14-5 and the “Define
Methods in Enumeration Classes” on page 14-7 sections.
Enumeration classes that subclass MATLAB built-in classes inherit most of the behaviors
of those classes. For example, an enumeration class derived from the double class
inherits the mathematical, relational, and set operations that work with variables of the
class.
Enumerations do not support the colon (:) operator, even if the superclass does.
Enumeration classes that do not subclass MATLAB built-in numeric and logical classes
can define properties. These classes can define constructors that set each member's
unique property values.
14-3
14 Enumerations
The constructor can save input arguments in property values. For example, a Color class
can specify a Red enumeration member color with three (Red, Green, Blue) values:
enumeration
Red (1,0,0)
end
See Also
Related Examples
• “Enumeration Class Restrictions” on page 14-27
• “Enumerations Derived from Built-In Types” on page 14-28
• “Enumerations That Encapsulate Data” on page 14-41
14-4
Define Enumeration Classes
Enumeration Class
Create an enumeration class by adding an enumeration block to a class definition. For
example, the WeekDays class enumerates a set of days of the week.
classdef WeekDays
enumeration
Monday, Tuesday, Wednesday, Thursday, Friday
end
end
To execute the MATLAB code in the following sections, place the WeekDays class
definition in a .m file on your path.
ClassName.MemberName
today = WeekDays.Tuesday;
whos
14-5
14 Enumerations
today
today =
Tuesday
For example, the Bearing class derives from the uint32 built-in class:
a = Bearing.East;
b = uint32(a);
whos
a 1x1 60 Bearing
b 1x1 4 uint32
The uint32 constructor accepts an object of the subclass Bearing and returns and
object of class uint32.
14-6
Define Enumeration Classes
ans =
ans =
14-7
14 Enumerations
B
end
methods
function c = SyntaxColors(r, g, b)
c.R = r; c.G = g; c.B = b;
end
end
enumeration
Error (1, 0, 0)
Comment (0, 1, 0)
Keyword (0, 0, 1)
String (1, 0, 1)
end
end
When you refer to an enumeration member, the constructor initializes the property
values:
e = SyntaxColors.Error;
e.R
ans =
Because SyntaxColors is a value class (it does not derive from handle), only the class
constructor can set property values:
e.R = 0
For more information on enumeration classes that define properties, see “Mutable Handle
vs. Immutable Value Enumeration Members” on page 14-34.
MATLAB provides a default constructor for all enumeration classes that do not explicitly
define a constructor. The default constructor creates an instance of the enumeration
class:
14-8
Define Enumeration Classes
For example, the input arguments for the Bool class are 0 for Bool.No and 1 for
Bool.Yes.
classdef Bool < logical
enumeration
No (0)
Yes (1)
end
end
The values of 0 and 1 are of class logical because the default constructor passes the
argument to the first superclass. That is, this statement:
n = Bool.No;
MATLAB passes the member argument only to the first superclass. For example, suppose
Bool derived from another class:
classdef Bool < logical & MyBool
enumeration
No (0)
Yes (1)
end
end
14-9
14 Enumerations
See Also
Related Examples
• “Refer to Enumerations” on page 14-11
• “Operations on Enumerations” on page 14-19
14-10
Refer to Enumerations
Refer to Enumerations
In this section...
“Instances of Enumeration Classes” on page 14-11
“Conversion of Characters to Enumerations” on page 14-13
“Enumeration Arrays” on page 14-15
The WeekDays class defines enumeration members for five days of the week.
classdef WeekDays
enumeration
Monday, Tuesday, Wednesday, Thursday, Friday
end
end
today = WeekDays.Monday;
tomorrow = WeekDays.Tuesday;
The variables today and tomorrow are objects of the WeekDays class.
The PPM class defines three enumeration members. Each member has an associated
numeric value derived from the class superclass.
14-11
14 Enumerations
level = PPM.High;
When you substitute enumeration members for instances of the superclass, MATLAB
coerces the enumeration member to the superclass. For example, add an enumeration
member of the PPM class with a numeric values
levelNew =
1100
whos
You can substitute superclass values for enumeration members when the values
correspond. For example, pass one of the numeric values defined in the enumeration class
to the PPMSwitch function.
function PPMSwitch(ppm)
switch ppm
case PPM.Low
disp Low
case PPM.Medium
disp Medium
case PPM.High
disp High
end
end
PPMSwitch(100)
Medium
PPMSwitch(PPM.Medium)
Medium
14-12
Refer to Enumerations
For information on operations you can perform on enumeration class instances, see
“Operations on Enumerations” on page 14-19.
Use a char vector instead of a direct reference to an enumeration member when you
want to use a simple character strings to specify an enumeration member. However,
specifying an enumeration member directly eliminates the conversion from char to
enumeration.
today = WeekDays('Tuesday');
class(today)
ans =
WeekDays
Create an enumeration array using the WeekDay class constructor and a cell array of
char vectors.
wd = WeekDays({'Monday','Wednesday','Friday'})
wd =
class(wd)
ans =
WeekDays
14-13
14 Enumerations
All char vectors in the cell array must correspond to an enumeration member defined by
the class.
MATLAB coerces char vectors into enumerations members when the dominant argument
is an enumeration. Because user-defined classes are dominant over the char class,
MATLAB attempts to convert the char vector to a member of the enumeration class.
Create an enumeration array. Then insert a char vector that represents an enumeration
member into the array.
a = [WeekDays.Monday,WeekDays.Wednesday,WeekDays.Friday]
a =
a(end+1) = 'Tuesday'
a =
class(a)
ans =
WeekDays
You can use enumeration members in place of char vectors in cases where functions
require char vectors. For example, this call to sprintf expects a char vector,
designated by the %s format specifier.
sprintf('Today is %s',WeekDays.Friday)
ans =
Today is Friday
14-14
Refer to Enumerations
The automatic conversion of enumeration classes to char enable you to use enumeration
members in this case.
Enumeration Arrays
Create enumeration arrays by:
wd = [WeekDays.Tuesday,WeekDays.Wednesday,WeekDays.Friday];
a(1) = WeekDays.Tuesday;
a(2) = WeekDays.Wednesday;
a(3) = WeekDays.Friday;
You can concatenate enumeration members and char vectors as long as the char vector
represents an enumeration member.
clear a
a = [WeekDays.Wednesday,'Friday'];
class(a)
ans =
WeekDays
clear a
a(1) = WeekDays.Wednesday;
a(2) = 'Friday';
class(a)
ans =
WeekDays
14-15
14 Enumerations
The default member an enumeration class is the first enumeration member defined in the
enumeration block. For the WeekDays class, the default enumeration member is
WeekDays.Monday.
classdef WeekDays
enumeration
Monday, Tuesday, Wednesday, Thursday, Friday
end
end
MATLAB allows assignment to any element of an array, even if the array variable does not
previously exist. To fill in unassigned array elements, MATLAB uses the default
enumeration member.
clear a
a(5) = WeekDays.Tuesday;
MATLAB must initialize the values of array elements a(1:4) with the default
enumeration member. The result of the assignment to the fifth element of the array a is:
a =
See Also
Related Examples
• “Operations on Enumerations” on page 14-19
14-16
Enumerations for Property Values
Use the WeekDays enumerations to restrict the allowed values of the Today property:
classdef Days
properties
Today WeekDays
end
end
14-17
14 Enumerations
d = Days;
d.Today = WeekDays.Tuesday;
d =
Today: Tuesday
The automatic conversion feature enables users of the Days class to assign values to the
Today property as either enumeration members, char vectors, or string scalars. The
Today property is restricted to members of the WeekDays enumeration class. Therefore,
you can assign a char vector that represents a member of the WeekDays class.
d = Days;
d.Today = 'Tuesday';
d = Days;
d.Today = "Tuesday";
For more information on restricting property values, see “Validate Property Values” on
page 8-24 and “Property Class and Size Validation” on page 8-31.
14-18
Operations on Enumerations
Operations on Enumerations
In this section...
“Operations Supported by Enumerations” on page 14-19
“Enumeration Class” on page 14-19
“Default Methods” on page 14-20
“Convert Enumeration Member to Characters” on page 14-20
“Convert Enumeration Array to Cell Array of char Vectors” on page 14-20
“Enumerations and char Vectors in Relational Operations” on page 14-21
“Enumerations in switch Statements” on page 14-22
“Enumeration Set Membership” on page 14-23
“Enumeration Text Comparison Methods” on page 14-24
“How to Get Information About Enumerations” on page 14-25
“Testing for an Enumeration” on page 14-25
Enumeration Class
The WeekDays class defines members that enumerate days of the week. This topic uses
the WeekDays class to illustrate how to perform operations on enumerations.
classdef WeekDays
enumeration
Monday, Tuesday, Wednesday, Thursday, Friday
end
end
For information on defining enumerations, see “Define Enumeration Classes” on page 14-
5.
14-19
14 Enumerations
Default Methods
Enumeration classes have the following default methods:
methods('WeekDays')
Methods for class WeekDays:
The WeekDays method converts char vectors, a cell array of char vectors, or string
array elements to enumerations.
Other methods behave similarly to the equivalent function when used with enumerations.
For information on a specific method, see the documentation for that function.
today = WeekDays.Friday;
['Today is ',char(today)]
ans =
Today is Friday
ca = cellstr([WeekDays.Tuesday,WeekDays.Thursday]);
class(ca)
ans =
cell
class([ca{1:2}])
14-20
Operations on Enumerations
ans =
char
Note Enumeration classes that derive from MATLAB built-in classes cannot substitute
char vectors for enumeration members.
today = WeekDays.Friday;
today == 'Friday'
ans =
wd = [WeekDays.Monday,WeekDays.Wednesday,WeekDays.Friday];
wd == 'Friday'
ans =
0 0 1
cv = {'Monday','Wednesday','Friday'};
md = [WeekDays.Tuesday,WeekDays.Thursday,WeekDays.Friday];
md ~= cv
ans =
1 1 0
Test equality to implement if statements. The char vector Wednesday is equal to (==)
the enumeration member WeekDays.Wednesday:
14-21
14 Enumerations
today = 'Wednesday';
...
if today == WeekDays.Wednesday
disp('Team meeting at 2:00')
end
function c = Reminder(day)
% Add error checking here
switch(day)
case WeekDays.Monday
c = 'Department meeting at 10:00';
case WeekDays.Tuesday
c = 'Meeting Free Day!';
case {WeekDays.Wednesday WeekDays.Friday}
c = 'Team meeting at 2:00';
case WeekDays.Thursday
c = 'Volleyball night';
end
end
today = WeekDays.Wednesday;
Reminder(today)
ans =
Note Enumeration classes that derive from MATLAB built-in classes cannot substitute
char vectors for enumeration members.
14-22
Operations on Enumerations
function c = Reminder2(day)
switch(day)
case 'Monday'
c = 'Department meeting at 10:00';
case 'Tuesday'
c = 'Meeting Free Day!';
case {'Wednesday' 'Friday'}
c = 'Team meeting at 2:00';
case 'Thursday'
c = 'Volleyball night';
end
end
Although you can use char vectors instead of specifying enumerations explicitly, MATLAB
must convert the char to an enumeration. Eliminate the need for this conversion if it is
not necessary.
Determine if today is a meeting day for your team. Create a set of enumeration members
corresponding to the days on which the team has meetings.
today = WeekDays.Tuesday;
teamMeetings = [WeekDays.Wednesday WeekDays.Friday];
ismember(today,teamMeetings)
ans =
0
14-23
14 Enumerations
If you pass both enumeration and char arguments to an enumeration class method, the
class attempts to convert the char to the class of the enumeration.
ans =
Determine if the enumeration member is a member of the cell array of char vectors.
ismember(WeekDays.Friday,{'Wednesday','Friday'})
ans =
The string comparison methods can compare enumeration members and char vectors.
today = WeekDays.Tuesday;
strcmp(today,'Friday')
ans =
14-24
Operations on Enumerations
strcmp(today,'Tuesday')
ans =
enumeration WeekDays
Monday
Tuesday
Wednesday
Thursday
Friday
today = WeekDays.Wednesday;
isenum(today)
ans =
noday = WeekDays.empty;
isenum(noday)
ans =
14-25
14 Enumerations
To determine if the class of a variable class is an enumeration class, use the meta.class
object.
today = WeekDays.Wednesday;
mc = metaclass(today);
mc.Enumeration
ans =
See Also
Related Examples
• “Enumeration Class Restrictions” on page 14-27
14-26
Enumeration Class Restrictions
See Also
Related Examples
• “Enumerations Derived from Built-In Types” on page 14-28
14-27
14 Enumerations
For a more basic discussion of enumeration classes, see “Define Enumeration Classes” on
page 14-5.
Note Enumeration classes derived from built-in numeric and logical classes cannot
define properties.
If an enumeration class subclasses a built-in numeric class, the subclass inherits ordering
and arithmetic operations that you can apply to the enumerated names.
For example, the Results class subclasses the int32 built-in class. This class associates
an integer value with each of the four enumeration members — First, Second, Third,
and NoPoints.
14-28
Enumerations Derived from Built-In Types
Second (50)
Third (10)
NoPlace (0)
end
end
The enumeration member inherits the methods of the int32 class (except the colon
operator). Use these enumerations like numeric values (summed, sorted, averaged).
isa(Results.Second,'int32')
ans =
For example, use enumeration names instead of numbers to rank two teams:
Team1 = [Results.First, Results.NoPlace, Results.Third, Results.Second];
Team2 = [Results.Second, Results.Third, Results.First, Results.First];
ans =
160
mean(Team1)
ans =
40
sort(Team2,'descend')
ans =
ans =
1 0 0 0
14-29
14 Enumerations
ans =
When you first refer to an enumeration class that derives from a built-in class such as,
int32, MATLAB passes the input arguments associated with the enumeration members
to the superclass constructor. For example, referencing the Second Results member,
defined as:
Second (50)
int32(50)
Specify aliased names with the same superclass constructor argument as the actual
name:
For example, the actual name of an instance of the Bool.off enumeration member is No:
a = Bool.No
14-30
Enumerations Derived from Built-In Types
a =
No
b = Bool.off
b =
No
This class derives from the built-in logical class. Therefore, underlying values for an
enumeration member depend only on what value logical returns when passed that
value:
a = Bool.Yes
a =
Yes
logical(a)
ans =
The FlowRate enumeration class defines three members, Low, Medium, and High.
classdef FlowRate < int32
enumeration
14-31
14 Enumerations
Low (10)
Medium (50)
High (100)
end
end
setFlow = FlowRate.Medium;
This statement causes MATLAB to call the default constructor with the argument value of
50. MATLAB passes this argument to the first superclass constructor (int32(50) in this
case). The result is an underlying value of 50 as a 32-bit integer for the
FlowRate.Medium member.
Because FlowRate subclasses a built-in numeric class (int32), this class cannot define
properties. However FlowRate inherits int32 methods including a converter method.
Programs can use the converter to obtain the underlying value:
setFlow = FlowRate.Medium;
int32(setFlow)
ans =
50
Default Converter
If an enumeration is a subclass of a built-in numeric class, you can convert from built-in
numeric data to the enumeration using the name of the enumeration class. For example:
a = Bool(1)
a =
Yes
An enumerated class also accepts enumeration members of its own class as input
arguments:
Bool(a)
14-32
See Also
ans =
Yes
Bool([0,1])
ans =
No Yes
Bool.empty
ans =
See Also
Related Examples
• “Mutable Handle vs. Immutable Value Enumeration Members” on page 14-34
• “Fundamental MATLAB Classes”
14-33
14 Enumerations
An instance of a value-based enumeration class is unique until the class is cleared and
reloaded. For example, given this class:
classdef WeekDays
enumeration
Monday, Tuesday, Wednesday, Thursday, Friday
14-34
Mutable Handle vs. Immutable Value Enumeration Members
end
end
ans =
a == b
ans =
Value-based enumeration classes that define properties are immutable. For example, the
Colors enumeration class associates RGB values with color names.
classdef Colors
properties
R = 0
G = 0
B = 0
end
methods
function c = Colors(r,g,b)
c.R = r; c.G = g; c.B = b;
end
end
enumeration
Red (1, 0, 0)
Green (0, 1, 0)
Blue (0, 0, 1)
end
end
14-35
14 Enumerations
ans =
1 0 0
red.G = 1;
Given a handle-based enumeration class with properties, changing the property value of
an instance causes all references to that instance to reflect the changed value.
For example, the HandleColors enumeration class associates RGB values with color
names, the same as the Colors class in the previous example. However, HandleColors
derives from handle:
14-36
Mutable Handle vs. Immutable Value Enumeration Members
Red (1, 0, 0)
Green (0, 1, 0)
Blue (0, 0, 1)
end
end
a = HandleColors.Red;
a.R
ans =
a.R = 0.8;
After setting the value of the R property to 0.8, create another instance, b, of
HandleColors.Red:
b = HandleColors.Red;
b.R
ans =
0.8000
The value of the R property of the newly created instance is also 0.8. A MATLAB session
has only one value for any enumeration member at any given time.
Clearing the workspace variables does not change the current definition of the
enumeration member HandleColors.Red:
clear
a = HandleColors.Red;
a.R
ans =
0.8000
14-37
14 Enumerations
clear classes
a = HandleColors.Red;
a.R
ans =
a = HandleColors.Red;
b = HandleColors.Red;
isequal(a,b)
ans =
The property values of a and b are the same, so isequal returns true. However, unlike
handle classes that are not enumeration classes, a and b are the same handle because
there is only one enumeration member. Determine handle equality using == (the handle
eq method).
a == b
ans =
See the handle eq method for information on how isequal and == differ when used
with handles.
14-38
Mutable Handle vs. Immutable Value Enumeration Members
The Machine class represents a machine with start and stop operations. The
MachineState enumerations are easy to work with because of their eq and char
methods, and they result in code that is easy to read.
classdef Machine < handle
properties (SetAccess = private)
State = MachineState.NotRunning
end
methods
function start(machine)
if machine.State == MachineState.NotRunning
machine.State = MachineState.Running;
end
disp (machine.State.char)
end
function stop(machine)
if machine.State == MachineState.Running
machine.State = MachineState.NotRunning;
end
disp (machine.State.char)
end
end
end
Running
m.stop
14-39
14 Enumerations
NotRunning
See Also
Related Examples
• “Enumerations That Encapsulate Data” on page 14-41
14-40
Enumerations That Encapsulate Data
Note Enumeration classes that subclass built-in numeric or logical classes cannot define
or inherit properties. For more information on this kind of enumeration class, see
“Enumerations Derived from Built-In Types” on page 14-28 .
Define properties in an enumeration class if you want to associate specific data with
enumeration members, but do not need to inherit arithmetic, ordering, or other
operations that MATLAB defines for specific built-in classes.
Representing Colors
Define an enumeration class to represent the RGB values of the colors in a color set. The
Colors class defines names for the colors, each of which uses the RGB values as
arguments to the class constructor:
classdef Colors
properties
R = 0
G = 0
B = 0
end
methods
function c = Colors(r, g, b)
c.R = r; c.G = g; c.B = b;
14-41
14 Enumerations
end
end
enumeration
Blueish (18/255,104/255,179/255)
Reddish (237/255,36/255,38/255)
Greenish (155/255,190/255,61/255)
Purplish (123/255,45/255,116/255)
Yellowish (1,199/255,0)
LightBlue (77/255,190/255,238/255)
end
end
You can access the property values via the enumeration member:
Colors.Reddish.R
ans =
0.9294
Suppose that you want to create a plot with the new shade of red named Reddish:
a = Colors.Reddish;
[a.R,a.G,a.B]
ans =
Use these values by accessing the enumeration member properties. For example, the
myPlot function accepts a Colors enumeration member as an input argument. The
function accesses the RGB values defining the color from the property values.
function h = myPlot(x,y,LineColor)
h = line('XData',x,'YData',y);
r = LineColor.R;
g = LineColor.G;
b = LineColor.B;
h.Color = [r g b];
end
h = myPlot(1:10,1:10,Colors.Reddish);
14-42
Enumerations That Encapsulate Data
The Colors class encapsulates the definitions of a standard set of colors. You can change
the enumeration class definition of the colors and not affect functions that use the
enumerations.
The Cars class defines categories used to inventory automobiles. The Cars class derives
from the CarPainter class, which derives from handle. The abstract CarPainter class
defines a paint method, which modifies the Color property when a car is painted
another color.
The Cars class uses the Colors enumeration members to specify a finite set of available
colors. The exact definition of any given color can change independently of the Cars
class.
classdef Cars < CarPainter
enumeration
Hybrid (2,'Manual',55,Colors.Reddish)
Compact(4,'Manual',32,Colors.Greenish)
MiniVan(6,'Automatic',24,Colors.Blueish)
SUV (8,'Automatic',12,Colors.Yellowish)
end
properties (SetAccess = private)
Cylinders
Transmission
MPG
Color
end
methods
function obj = Cars(cyl,trans,mpg,colr)
obj.Cylinders = cyl;
obj.Transmission = trans;
obj.MPG = mpg;
obj.Color = colr;
end
function paint(obj,colorobj)
if isa(colorobj,'Colors')
obj.Color = colorobj;
else
[~,cls] = enumeration('Colors');
disp('Not an available color')
disp(cls)
end
end
14-43
14 Enumerations
end
end
The CarPainter class requires its subclasses to define a method called paint:
c1 = Cars.Compact;
c1.Color
ans =
Greenish
c1.paint(Colors.Reddish)
c1.Color
ans =
Reddish
See Also
Related Examples
• “Save and Load Enumerations” on page 14-45
• “Enumerations for Property Values” on page 14-17
14-44
Save and Load Enumerations
In this section...
“Basic Knowledge” on page 14-45
“Built-In and Value-Based Enumeration Classes” on page 14-45
“Simple and Handle-Based Enumeration Classes” on page 14-45
“Causes: Load as struct Instead of Object” on page 14-46
Basic Knowledge
See the save and load functions and “Save and Load Process for Objects” on page 13-2
for general information on saving and loading objects.
To see a list of enumeration names defined by a class, use the enumeration function.
When loading these enumerations, MATLAB preserves names over underlying values. If
the saved named value is different from the current class definition, MATLAB uses the
value defined in the current class, and then issues a warning.
When loading these types of enumerations, MATLAB does not check the values associated
with the names in the current class definition. This behavior results from the fact that
simple enumerations have no underlying values and handle-based enumerations can
legally have values that are different than those values defined by the class.
14-45
14 Enumerations
If the changes to the enumeration class definition do not prevent MATLAB from loading
the object (that is, all the named values in the MAT-File are present in the modified class
definition), then MATLAB issues a warning that the class has changed and loads the
enumeration.
In the following cases, MATLAB issues a warning and loads as much of the saved data as
possible as a struct:
struct Fields
• ValueNames — A cell array of strings, one per unique value in the enumeration array.
• Values — An array of the same dimension as ValueNames containing the
corresponding values of the enumeration members named in ValueNames. Depending
on the kind of enumeration class, Values can be one of the following:
• If the enumeration class derives from a built-in class, the array class is the same as
the built-in class. The values in the array are the underlying values of each
enumeration member.
• Otherwise, a struct array representing the property name — property values
pairs of each enumeration member. For simple and handle-based enumerations, the
struct array has no fields.
• ValueIndices — a uint32 array of the same size as the original enumeration. Each
element is an index into the ValueNames and Values arrays. The content of
ValueIndices represents the value of each object in the original enumeration array.
14-46
See Also
See Also
More About
• “Named Values” on page 14-2
14-47
15
Constant Properties
15 Constant Properties
Use constant properties to define constant values that you can access by name. Create a
class with constant properties by declaring the Constant attribute in the property
blocks. Setting the Constant attribute means that, once initialized to the value specified
in the property block, the value cannot be changed.
Assign any value to a Constant property, including a MATLAB expression. For example:
classdef NamedConst
properties (Constant)
R = pi/180
D = 1/NamedConst.R
AccCode = '0145968740001110202NPQ'
RN = rand(5)
end
end
MATLAB evaluates the expressions when loading the class. Therefore, the values
MATLAB assigns to RN are the result of a single call to the rand function and do not
change with subsequent references to NamedConst.RN. Calling clear classes causes
MATLAB to reload the class and reinitialize the constant properties.
Refer to the constant using the class name and the property name:
15-2
Define Class Properties with Constant Values
ClassName.PropName
For example, to use the NamedConst class defined in the previous section, reference the
constant for the degree to radian conversion, R:
radi = 45*NamedConst.R
radi =
0.7854
Constants In Packages
To create a library for constant values that you can access by name, first create a package
folder, then define the various classes to organize the constants. For example, to
implement a set of constants that are useful for making astronomical calculations, define
a AstroConstants class in a package called constants:
+constants/@AstroConstants/AstroConstants.m
classdef AstroConstants
properties (Constant)
C = 2.99792458e8 % m/s
G = 6.67259 % m/kgs
Me = 5.976e24 % Earth mass (kg)
Re = 6.378e6 % Earth radius (m)
end
end
To use this set of constants, reference them with a fully qualified class name. For
example, the following function uses some of the constants defined in AstroContants:
function E = energyToOrbit(m,r)
E = constants.AstroConstants.G * constants.AstroConstants.Me * m * ...
(1/constants.AstroConstants.Re-0.5*r);
end
Importing the package into the function eliminates the need to repeat the package name
(see import):
function E = energyToOrbit(m,r)
import constants.*;
E = AstroConstants.G * AstroConstants.Me * m * ...
15-3
15 Constant Properties
For example, the ConstMapClass class defines a constant property. The value of the
constant property is a handle object (a containers.Map object).
To assign the current date to the Date key, return the handle from the constant property,
then make the assignment using the local variable on the left side of the assignment
statement:
localMap = ConstMapClass.ConstMapProp
localMap('Date') = datestr(clock);
You cannot use a reference to a constant property on the left side of an assignment
statement. For example, MATLAB interprets the following statement as the creation of a
struct named ConstantMapClass with a field ConstMapProp:
ConstMapClass.ConstMapProp('Date') = datestr(clock);
15-4
Define Class Properties with Constant Values
properties
Date
Department
ProjectNumber
end
methods (Access = private)
function obj = MyProject
obj.Date = datestr(clock);
obj.Department = 'Engineering';
obj.ProjectNumber = 'P29.367';
end
end
end
MyProject.ProjectInfo.Date
ans =
18-Apr-2002 09:56:59
Because MyProject is a handle class, you can get the handle to the instance that is
assigned to the constant property:
p = MyProject.ProjectInfo;
p.Department
ans =
Engineering
Modify the nonconstant properties of the MyProject class using this handle:
MyProject.ProjectInfo.Department
15-5
15 Constant Properties
ans =
Quality Assurance
Clearing the class results in the assignment of a new instance of MyProject to the
ProjectInfo property.
clear MyProject
MyProject.ProjectInfo.Department
ans =
Engineering
You can assign an instance of the defining class as the default value of a property only
when the property is declared as Constant
See Also
Related Examples
• “Static Data” on page 4-2
More About
• “Named Values” on page 14-2
15-6
16
Class Metadata
In this section...
“What Is Class Metadata?” on page 16-2
“The meta Package” on page 16-3
“Metaclass Objects” on page 16-3
“Metaclass Object Lifecycle” on page 16-4
All class components have an associated metaclass, which you access from the
meta.class object. For example, create the meta.class object for the
matlab.mixin.Copyable class:
mc = ?matlab.mixin.Copyable
mc =
Name: 'matlab.mixin.Copyable'
Description: 'Implement copy method for handle objects in MA...'
DetailedDescription: ''
Hidden: 0
Sealed: 0
Abstract: 1
Enumeration: 0
ConstructOnLoad: 1
HandleCompatible: 1
InferiorClasses: {0x1 cell}
ContainingPackage: [1x1 meta.package]
PropertyList: [0x1 meta.property]
MethodList: [19x1 meta.method]
EventList: [1x1 meta.event]
EnumerationMemberList: [0x1 meta.EnumeratedValue]
SuperclassList: [1x1 meta.class]
16-2
Class Metadata
Metaclass Objects
You cannot instantiate metaclasses directly by calling the respective class constructor.
Create metaclass objects from class instances or from the class name.
Create meta.class object from class name using the fromName method:
mc = meta.class.fromName('MyClass');
16-3
16 Information from Class Metadata
The metaclass function returns the meta.class object (that is, an object of the
meta.class class). You can obtain other metaclass objects (meta.property,
meta.method, and so on) from the meta.class object.
Note Metaclass is a term used here to refer to all the classes in the meta package.
meta.class is a class in the meta package whose instances contain information about
MATLAB classes. Metadata is information about classes contained in metaclasses.
However, MATLAB does not update existing metaclass objects to the new class definition.
If you change a class definition while metaclass objects of that class exist, MATLAB
deletes the metaclass objects and their handles become invalid. You must create a new
metaclass object after updating the class.
For information on how to modify and reload classes, see “Automatic Updates for Modified
Classes” on page 5-51.
See Also
Related Examples
• “Class Introspection with Metadata” on page 16-5
• “Find Objects with Specific Values” on page 16-10
• “Get Information About Properties” on page 16-14
• “Find Default Values in Property Metadata” on page 16-20
16-4
Class Introspection with Metadata
16-5
16 Information from Class Metadata
end
end
Using the EmployeeData class, create a meta.class object using the ? operator:
mc = ?EmployeeData;
ans =
handle
The EmployeeData class has only one superclass. For classes having more than one
direct superclass, a contains a meta.class object for each superclass.
ans =
handle
Inspect Properties
Find the names of the properties defined by the EmployeeData class. First obtain an
array of meta.properties objects from the meta.class PropertyList property.
mc = ?EmployeeData;
mpArray = mc.PropertyList;
The length of mpArray indicates that there are two meta.property objects, one for
each property defined by the EmployeeData class:
16-6
Class Introspection with Metadata
length(mpArray)
ans =
2
prop1 = mpArray(1);
prop1.Name
ans =
EmployeeName
The Name property of the meta.property object identifies the class property
represented by that meta.property object.
You can use indexing techniques to list class components that have specific attribute
values. For example, this code lists the methods in the EmployeeData class that have
private access:
mc = ?EmployeeData;
mc.PropertyList(ismember({mc.PropertyList(:).SetAccess},'private')).Name
ans =
EmployeeNumber
Access is not a property of the meta.property class. Use SetAccess and GetAccess,
which are properties of the meta.property class.
Find components with attributes that are logical values using a statement like this one:
mc = ?handle;
mc.MethodList(ismember([mc.MethodList(:).Hidden],true)).Name
ans =
empty
16-7
16 Information from Class Metadata
The value of the EmployeeName property is the text My Name, which was assigned in the
constructor.
ans =
My Name
The value of the EmployeeNumber property is not accessible because the property has
private Access.
EdObj.(mpArray(2).Name)
mpArray(2).GetAccess
ans =
private
16-8
See Also
mc = ?WeekDays;
mc.EnumerationMemberList(2).Name
ans =
Tuesday
See Also
Related Examples
• “Find Objects with Specific Values” on page 16-10
16-9
16 Information from Class Metadata
Find the object representing employee Nancy Wong and display the name and number by
concatenating the strings:
16-10
Find Objects with Specific Values
NW = findobj(PB,'Name','Nancy Wong');
[NW.Name,' - ',NW.Number]
ans =
Search for objects with specific property names using the -property option:
H = findobj(PB,'-property','HighSpeedInternet');
H.HighSpeedInternet
ans =
1M
The -property option enables you to omit the value of the property and search for
objects using only the property name.
ans =
5081234568
For example, find the abstract methods in a class definition by searching the meta.class
MethodList for meta.method objects with their Abstract property set to true:
Use the class name in character format because class is abstract. You cannot create an
object of the class:
mc = meta.class.fromName('MyClass');
16-11
16 Information from Class Metadata
Search the MethodList list of meta.method objects for those methods that have their
Abstract property set to true:
absMethods = findobj(mc.MethodList,'Abstract',true);
methodNames = {absMethods.Name};
The cell array, methodNames, contains the names of the abstract methods in the class.
Find the names of all properties in the containers.Map class that have public
GetAccess:
mc = ?containers.Map;
mpArray = findobj(mc.PropertyList,'GetAccess','public');
names = {mpArray.Name};
Display the names of all containers.Map properties that have public GetAccess:
celldisp(names)
names{1} =
Count
names{2} =
KeyType
names{3} =
ValueType
~isempty(findobj([mc.MethodList(:)],'Static',true))
16-12
See Also
ans =
findobj returns an array of meta.method objects for the static methods. In this case,
the list of static methods is not empty. Therefore, there are static methods defined by this
class.
Get the names of any static methods from the meta.method array:
staticMethodInfo = findobj([mc.MethodList(:)],'Static',true);
staticMethodInfo(:).Name
ans =
empty
The name of the static method (there is only one in this case) is empty. Here is the
information from the meta.method object for the empty method:
staticMethodInfo
Name: 'empty'
Description: 'Returns an empty object array of the given size'
DetailedDescription: ''
Access: 'public'
Static: 1
Abstract: 0
Sealed: 0
Hidden: 1
InputNames: {'varargin'}
OutputNames: {'E'}
DefiningClass: [1x1 meta.class]
See Also
empty
Related Examples
• “Get Information About Properties” on page 16-14
16-13
16 Information from Class Metadata
Get the meta.property object for a property from the meta.class object. To get the
meta.class object for a class:
Create the meta.class object using the ? operator with the class name:
mc = ?BasicHandle
mc =
Name: 'BasicHandle'
Description: ''
16-14
Get Information About Properties
DetailedDescription: ''
Hidden: 0
Sealed: 0
Abstract: 0
Enumeration: 0
ConstructOnLoad: 0
HandleCompatible: 1
InferiorClasses: {0×1 cell}
ContainingPackage: [0×0 meta.package]
RestrictsSubclassing: 0
PropertyList: [3×1 meta.property]
MethodList: [22×1 meta.method]
EventList: [1×1 meta.event]
EnumerationMemberList: [0×1 meta.EnumeratedValue]
SuperclassList: [1×1 meta.class]
ans =
Date
The meta.class object contains a meta.property object for all properties, including
hidden properties. The properties function returns only public properties.
For a handle class, use the handle findprop method to get the meta.property object
for a specific property.
For example, find the meta.property object for the Category property of the
BasicHandle class.
mp = findprop(BasicHandle,'Category')
mp =
Name: 'Category'
Description: ''
DetailedDescription: ''
GetAccess: 'public'
16-15
16 Information from Class Metadata
SetAccess: 'public'
Dependent: 0
Constant: 0
Abstract: 0
Transient: 0
Hidden: 0
GetObservable: 0
SetObservable: 0
AbortSet: 0
NonCopyable: 0
GetMethod: []
SetMethod: []
HasDefault: 1
DefaultValue: 'new'
DefiningClass: [1×1 meta.class]
For a list of property attributes, see “Table of Property Attributes” on page 8-9.
Access other metaclass objects directly from the meta.class object properties. For
example, the statement:
mc = ?containers.Map;
class(mc)
ans =
meta.class
class(mc.PropertyList)
16-16
Get Information About Properties
ans =
meta.property
mc.Properties(1)
ans =
[1x1 meta.property]
The Name property of the meta.property object contains a char vector that is the name
of the property:
class(mc.PropertyList(1).Name)
ans =
char
mc.PropertyList(1).Name([1 end])
ans =
Ct
• Find objects that define constant properties (Constant attribute set to true).
• Determine what properties are read-only (GetAccess = public, SetAccess =
private).
16-17
16 Information from Class Metadata
The findAttrValue function returns a cell array of property names that set the
specified attribute.
16-18
See Also
end
end
cl_out = cl_array(1:ii);
end
mapobj = containers.Map({'rose','bicycle'},{'flower','machine'});
findAttrValue(mapobj,'SetAccess','private')
ans =
findAttrValue(mapobj,'GetAccess','public')
ans =
See Also
Related Examples
• “Find Default Values in Property Metadata” on page 16-20
16-19
16 Information from Class Metadata
Default Values
Class definitions can specify explicit default values for properties (see “Property Default
Values” on page 8-18). Determine if a class defines an explicit default value for a property
and what the value of the default is from the property meta.property object.
meta.property Data
The meta.class object for a class contains a meta.property object for every property
defined by the class, including properties with private and protected access.
For example, get the meta.class object for the PropertyWithDefault class shown
here:
classdef PropertyWithDefault
properties
Date = date
RandNumber = randi(9)
end
end
The second element in the mp array is the meta.property object for the RandNumber
property. Listing the meta.property object shows the information contained in its
properties:
mp(2)
16-20
Find Default Values in Property Metadata
Name: 'RandNumber'
Description: ''
DetailedDescription: ''
GetAccess: 'public'
SetAccess: 'public'
Dependent: 0
Constant: 0
Abstract: 0
Transient: 0
Hidden: 0
GetObservable: 0
SetObservable: 0
AbortSet: 0
NonCopyable: 0
GetMethod: []
SetMethod: []
HasDefault: 1
DefaultValue: 5
DefiningClass: [1×1 meta.class]
• HasDefault — true (displayed as 1) if the class specifies a default value for the
property, false if it does not.
• DefaultValue — Contains the default value, when the class defines a default value
for the property. If the default value is an expression, the value of DefaultValue is
the result of evaluating the expression.
For more information on the evaluation of property default values defined by expressions,
see “Evaluation of Expressions in Class Definitions” on page 6-10.
These properties provide a programmatic way to obtain property default values without
opening class definition files. Use these meta.property object properties to obtain
property default values for both built-in classes and classes defined in MATLAB code.
1 Getting the meta.property object for the property whose default value you want to
query.
16-21
16 Information from Class Metadata
classdef MyDefs
properties
Material = 'acrylic'
InitialValue = 1.0
end
end
Follow these steps to obtain the default value defined for the Material property. Include
any error checking that is necessary for your application.
mc = ?MyDefs;
2 Get an array of meta.property objects from the meta.class PropertyList
property:
mp = mc.PropertyList;
3 The length of the mp array equals the number of properties. You can use the
meta.property Name property to find the property of interest:
for k = 1:length(mp)
if (strcmp(mp(k).Name,'Material')
...
4 Before querying the default value of the Material property, test the HasDefault
meta.property to determine if MyClass defines a default property for this
property:
16-22
Find Default Values in Property Metadata
if mp(k).HasDefault
dv = mp(k).DefaultValue;
end
The DefaultValue property is read-only. Changing the default value in the class
definition changes the value of DefaultValue property. You can query the default value
of a property regardless of its access settings.
Abstract and dynamic properties cannot define default values. Therefore, MATLAB
returns an error if you attempt to query the default value of properties with these
attributes. Always test the logical value of the meta.property HasDefault property
before querying the DefaultValue property to avoid generating an error.
Class definitions can define property default values as MATLAB expressions (see
“Evaluation of Expressions in Class Definitions” on page 6-10 for more information).
MATLAB evaluates these expressions the first time the default value is needed, such as
the first time you create an instance of the class.
MyClass does not explicitly define a default value for the Foo property:
classdef MyFoo
properties
Foo
end
end
The meta.property instance for property Foo has a value of false for HasDefault.
Because the class does not explicitly define a default value for Foo, attempting to access
the DefaultValue property causes an error:
mc = ?MyFoo;
mp = mc.PropertyList(1);
mp.HasDefault
16-23
16 Information from Class Metadata
ans =
dv = mp.DefaultValue;
Abstract Property
classdef MyAbst
properties (Abstract)
Foo
end
end
The meta.property instance for property Foo has a value of false for its HasDefault
property because you cannot define a default value for an Abstract property. Attempting
to access DefaultValue causes an error:
mc = ?MyAbst;
mp = mc.PropertyList(1);
mp.HasDefault
ans =
dv = mp.DefaultValue;
MyPropEr defines the Foo property default value as an expression that errors when
evaluated.
classdef MyPropEr
properties
Foo = sin(pie/2)
end
end
16-24
Find Default Values in Property Metadata
The meta.property object for property Foo has a value of true for its HasDefault
property because Foo does have a default value:
sin(pie/2)
However, this expression returns an error (pie is a function that creates a pie graph, not
the value pi).
mc = ?MyPropEr;
mp = mc.PropertyList(1);
mp.HasDefault
ans =
dv = mp.DefaultValue;
Querying the default value causes the evaluation of the expression and returns the error.
classdef MyEmptyProp
properties
Foo = []
end
end
The meta.property object for property Foo has a value of true for its HasDefault
property. Accessing DefaultValue returns the value []:
mc = ?MyEmptyProp;
mp = mc.PropertyList(1);
mp.HasDefault
ans =
dv = mp.DefaultValue;
16-25
16 Information from Class Metadata
dv =
[]
See Also
Related Examples
• “Get Information About Properties” on page 16-14
16-26
17
You can change how user-defined objects behave by defining methods that control specific
behaviors. To change a behavior, implement the appropriate method with the name and
signature of the MATLAB function.
17-2
Methods That Modify Default Behavior
17-3
17 Specialize Object Behavior
Overloading
Overloading means that there is more than one function or method having the same name
within the same scope. MATLAB dispatches to a particular function or method based on
the dominant argument. For example, the timeseries class overloads the MATLAB plot
17-4
See Also
function. When you call plot with a timeseries object as an input argument, MATLAB
calls the timeseries class method named plot.
Overriding
See Also
Related Examples
• “Overload Functions in Class Definitions” on page 9-34
• “Object Precedence in Method Invocation” on page 9-47
• “Operator Overloading” on page 17-47
17-5
17 Specialize Object Behavior
Therefore, the indexing code determines the value of nargout for the call to subsref
and the value of nargin for the call to subsasgn.
17-6
Number of Arguments for subsref and subsasgn
This subscripted reference returns a comma-separated list of three elements. For this
statement, the value of nargout in subsref is 3.
l(1:3).Values
ans =
ans =
ans =
The left side of a subscripted assignment statement affects the number of input
arguments that MATLAB uses to call subsasgn. This subscripted assignment assigns
three values to the three elements added to the array. For this assignment, the value of
nargin within subsasgn is 5 (the object, the indexing substructure, and the three values
to assign).
[l(11:13).Values] = l(1:3).Values
l =
Values
If the number of right-side arguments cannot satisfy the number of left-side arguments,
MATLAB returns an error:
[l(11:13).Values] = l(1).Values
Insufficient number of outputs from right hand side of equal sign to satisfy
assignment.
17-7
17 Specialize Object Behavior
If a class overloads subsasgn to support either '{}', '.', or both types of indexing, and
the operation assigns more than one value, overload subsasgn to accept multiple values
using varargin:
function A = subsagn(A,S,varargin)
...
end
See Also
More About
• “Modify nargout and nargin for Indexing Methods” on page 17-9
• “Comma-Separated Lists”
17-8
Modify nargout and nargin for Indexing Methods
If your class design requires that indexing operations return or assign a different number
of values than the number defined by the indexing operation, use
numArgumentsFromSubscript to specify the required number.
numArgumentsFromSubscript provides control over nargout for subsref and
nargin for subsasgn.
Before MATLAB release R2015b, MATLAB produced different results for some indexing
expressions that return or assign to a comma-separated list. Use
numArgumentsFromSubscript to support code that relies on the behavior of previous
releases. Also, now you can overload numArgumentsFromSubscript instead of numel
to achieve specific results without redefining how numel works.
17-9
17 Specialize Object Behavior
function n = numArgumentsFromSubscript(obj,s,indexingContext)
...
end
See Also
More About
• “Number of Arguments for subsref and subsasgn” on page 17-6
• “Use of size and numel with Classes” on page 12-77
17-10
Concatenation Methods
Concatenation Methods
In this section...
“Default Concatenation” on page 17-11
“Methods to Overload” on page 17-11
Default Concatenation
You can concatenate objects into arrays. For example, suppose that you have three
instances of the class MyClass, obj1, obj2, obj3. You can form arrays of these objects
using brackets. Horizontal concatenation calls horzcat:
HorArray = [obj1,obj2,obj3];
HorArray is a 1-by-3 array of class MyClass. You can concatenate the objects along the
vertical dimension, which calls vertcat:
VertArray = [obj1;obj2;obj3]
ndArray = cat(3,HorArray,HorArray);
Methods to Overload
Overload horzcat, vertcat, and cat to produce specialized behaviors in your class.
Overload both horzcat and vertcat whenever you want to modify object concatenation
because MATLAB uses both functions for any concatenation operation.
See Also
Related Examples
• “Subclasses of Built-In Types with Properties” on page 12-68
17-11
17 Specialize Object Behavior
Object Converters
In this section...
“Why Implement Converters” on page 17-12
“Converters for Package Classes” on page 17-12
“Converters and Subscripted Assignment” on page 17-13
Suppose that you define a polynomial class. If you create a double method for the
polynomial class, you can use it to call other functions that require inputs of type
double.
p = polynomial(...);
dp = double(p);
roots(dp)
17-12
Object Converters
classdef MyClass
...
methods
function objPkgClass = PkgName.PkgClass(objMyclass)
...
end
end
end
You cannot define a converter method that uses dots in the name in a separate file. Define
package-class converters in the classdef file.
A(1) = myobj;
MATLAB compares the class of the Right-Side variable to the class of the Left-Side
variable. If the classes are different, MATLAB attempts to convert the Right-Side variable
to the class of the Left-Side variable. To do this conversion, MATLAB first searches for a
method of the Right-Side class that has the same name as the Left-Side class. Such a
method is a converter method, which is similar to a typecast operation in other
languages.
If the Right-Side class does not define a method to convert from the Right-Side class to
the Left-Side class, MATLAB calls the Left-Side class constructor. passing it the Right-
Side variable.
17-13
17 Specialize Object Behavior
See Also
Related Examples
• “Converter Methods” on page 10-21
• “The Double Converter” on page 19-15
17-14
Object Array Indexing
Arrays enable you to reference and assign elements of the array using a subscripted
notation. This notation specifies the indices of specific array elements. For example,
suppose that you create two arrays of numbers (using randi and concatenation).
A =
4 8 5 7
4 2 6 3
7 5 7 7
Reference and assign elements of either array using index values in parentheses:
B(2) = A(3,4);
B
B =
3 7 9
17-15
17 Specialize Object Behavior
C = A(3,4);
MATLAB calls the built-in subsref function to determine how to interpret the statement.
Similarly, if you execute a statement that involves indexed assignment:
C(4) = 7;
MATLAB calls the built-in subsasgn function to determine how to interpret the
statement.
The MATLAB default subsref and subsasgn functions also work with user-defined
objects. For example, create an array of objects of the same class:
for k=1:3
objArray(k) = MyClass;
end
Referencing the second element in the object array, objArray, returns the object
constructed when k = 2:
D = objArray(2);
class(D)
ans =
MyClass
You can assign an object to an array of objects of the same class, or an uninitialized
variable:
newArray(3,4) = D;
Arrays of objects behave much like numeric arrays in MATLAB. You do not need to
implement any special methods to provide standard array behavior with your class.
17-16
Object Array Indexing
Once you add a subsref or subsasgn method to your class, then MATLAB calls only the
class method, not the built-in function. Therefore, your class method must implement all
the indexed reference and assignment operations that you want your class to support.
These operations include:
Implementing subsref and subsasgn methods gives you complete control over the
interpretation of indexing expressions for objects of your class. Implementing the extent
of behaviors that MATLAB provides by default is nontrivial.
This statement:
obj.Data(2,3)
Returns the value contained in the second row, third column of the array. If you have an
array of objects, use an expression like:
objArray(3).Data(2,3)
This statement returns the value contained in the second row, third column of the third
element in the array.
Modify the default indexing behavior when your class design requires behavior that is
different from MATLAB default behavior.
17-17
17 Specialize Object Behavior
calls the built-in subsref function. To call the class-defined subsref method, use:
subsref(obj,substruct('.','Prop'))
For example, suppose that you define a class to represent polynomial. This class has a
subsref method that evaluates the polynomial with the value of the independent variable
equal to the subscript. Assume that this statement defines the polynomial with its
coefficients:
p = polynom([1 0 -2 -5]);
ans =
16
Suppose that you want to use this feature in another class method. To do so, call the
subsref function directly. The evalEqual method accepts two polynom objects and a
value at which to evaluate the polynomials:
methods
function ToF = evalEqual(p1,p2,x)
% Create arguments for subsref
subs.type = '()';
subs.subs = {x};
% Need to call subsref explicitly
y1 = subsref(p1,subs);
y2 = subsref(p2,subs);
if y1 == y2
ToF = true;
else
17-18
Object Array Indexing
ToF = false;
end
end
end
This behavior enables you to use standard MATLAB indexing to implement specialized
behaviors. See “Class with Modified Indexing” on page 17-39 for examples of how to use
both built-in and class-modified indexing.
17-19
17 Specialize Object Behavior
This subsref enables the use of dot notation to create a plot using the name 'plot'.
The statement:
obj = MyPlot(1:10,1:10);
h = obj.plot;
calls the plot function and returns the handle to the graphics object.
You do not need to code each method and property name. The otherwise code in the
inner switch block manages any name reference that you do not explicitly specify in
case statements. However, using this technique exposes any private and protected class
members via dot notation. For example, you can reference the private property, x, with
this statement:
obj.x
ans =
1 2 3 4 5 6 7 8 9 10
The same issue applies to writing a subsasgn method that enables assignment to private
or protected properties. Your subsref and subsasgn methods might need to code each
specific property and method name explicitly to avoid violating the class design.
See Also
Related Examples
• “Code Patterns for subsref and subsasgn Methods” on page 17-21
• “Indexed Reference” on page 17-28
• “Indexed Assignment” on page 17-31
17-20
Code Patterns for subsref and subsasgn Methods
For an overview of object indexing, see “Object Array Indexing” on page 17-15.
If your class design requires that indexing operations return or assign a different number
of values than the number defined by the default indexing operation, overload the
17-21
17 Specialize Object Behavior
For example, the CustomIndex class defines a property that you can use in indexing
expressions.
classdef CustomIndex
properties
DataArray
end
end
Create an object and assign a 5-by-5 matrix created by the magic function to the
DataArray property.
a = CustomIndex;
a.DataArray = magic(5);
This subscripted reference expression returns the first row of the 5-by-5 matrix.
a.DataArray(1,:)
ans =
17 24 1 8 15
This expression assigns new values to the first row of the array stored in the DataArray
property.
a.DataArray(1,:) = [1 2 3 4 5];
17-22
Code Patterns for subsref and subsasgn Methods
The indexing structure contains this information in the type and subs fields.
• type — One of the three possible indexing types: '.', '()', '{}'
• subs — A char vector with the property name or cell array of the indices used in the
expression, including : and end.
• S(1).type is set to '.', indicating that the first indexing operation is a dot.
• s(1).subs is set to the property name, 'DataArray'
The second level of indexing is in the second element of the indexing structure:
• Determine the full indexing expression using the types and subs fields of the
indexing structure.
• Implement the specialized behaviors for the indexing operations supported by the
class.
• Return the appropriate values or modified objects in response to the call by MATLAB.
A switch statement is a convenient way to detect the first level of indexing. There are
three types of indexing—dot, parentheses, and braces. Each case block in the switch
17-23
17 Specialize Object Behavior
statement implements all indexing expressions that begin with that first-level type of
indexing.
The methods must implement all indexing expressions that the class supports. If you do
not customize a particular type of indexing, call the built-in function to handle that
expression.
Use the length of the indexing structure array and indexing type define conditional
statements for compound indexing expressions.
The following framework for the subsref method shows how to use information in the
indexing structure in conditional statements. Your application can involve other
expression not shown here.
function varargout = subsref(obj,s)
switch s(1).type
case '.'
if length(s) == 1
% Implement obj.PropertyName
...
elseif length(s) == 2 && strcmp(s(2).type,'()')
% Implement obj.PropertyName(indices)
...
else
[varargout{1:nargout}] = builtin('subsref',obj,s);
end
case '()'
if length(s) == 1
% Implement obj(indices)
...
elseif length(s) == 2 && strcmp(s(2).type,'.')
% Implement obj(ind).PropertyName
...
elseif length(s) == 3 && strcmp(s(2).type,'.') && strcmp(s(3).type,'()')
% Implement obj(indices).PropertyName(indices)
...
else
% Use built-in for any other expression
[varargout{1:nargout}] = builtin('subsref',obj,s);
end
case '{}'
if length(s) == 1
% Implement obj{indices}
...
elseif length(s) == 2 && strcmp(s(2).type,'.')
% Implement obj{indices}.PropertyName
...
else
% Use built-in for any other expression
17-24
Code Patterns for subsref and subsasgn Methods
[varargout{1:nargout}] = builtin('subsref',obj,s);
end
otherwise
error('Not a valid indexing expression')
end
Using varargout for the returned value enables the method to work with object arrays.
For example, suppose that you want to support the return of a comma-separated list with
an expression like this one:
[x1,...xn] = objArray.PropertyName(Indices)
This expression results in a two-element indexing structure array. The first-level type is
dot ('.') and the second level is parentheses ('()'). Build the varargout cell array
with each value in the array.
case '.'
...
if length(s)==2 && strcmp(s(2).type,'()')
prop = s(1).subs; % Property name
n = numel(obj); % Number of elements in array
varargout = cell(1,n); % Preallocate cell array
for k = 1:n
varargout{k} = obj(k).(prop).(s(2).subs);
end
end
...
end
subsasgn Pattern
The following framework for the subsasgn method shows how to use the indexing
structure in conditional statements that implement assignment operations.
function obj = subsasgn(obj,s,varargin)
switch s(1).type
case '.'
if length(s) == 1
% Implement obj.PropertyName = varargin{:};
...
elseif length(s) == 2 && strcmp(s(2).type,'()')
% Implement obj.PropertyName(indices) = varargin{:};
...
else
% Call built-in for any other case
obj = builtin('subsasgn',obj,s,varargin{:});
end
case '()'
if length(s) == 1
17-25
17 Specialize Object Behavior
Using varargin for the right-side value of the assignment statement enables the method
to work with object arrays. For example, suppose that you want to support the assignment
of a comma-separated list with an expression like this one:
C = {'one';'two';'three'};
[objArray.PropertyName] = C{:}
This expression results in an indexing structure with the dot type ('.') indexing The cell
array C on the right side of the assignment statement produces a comma-separated list.
This code assigns one list item to each property in the object array.
case '.'
if length(s)==1
prop = s(1).subs; % Property name
n = numel(obj); % Number of elements in array
for k = 1:n
obj(k).(prop) = varargin{k};
end
end
end
17-26
See Also
See Also
Related Examples
• “Class with Modified Indexing” on page 17-39
• “Representing Hardware with Classes” on page 12-83
• “Subclasses of Built-In Types with Properties” on page 12-68
17-27
17 Specialize Object Behavior
Indexed Reference
In this section...
“How Indexed Reference Works” on page 17-28
“Compound Indexed References” on page 17-29
Each of these statements results in a call by MATLAB to the subsref of class A, or a call
to the built-in subsasgn function if the class of A does not implement a subsasgn
method.
MATLAB passes two arguments to subsref and requires subsref to return the result of
the indexed reference:
B = subsref(A,S)
The first argument is the object being referenced, A. The second argument, S, is a
substruct with two fields:
• S.type is a char vector containing '()', '{}', or '.' specifying the indexing type
used.
• S.subs is a cell array or char vector containing the actual index or name. A colon
used as an index is passed in the cell array as the colon character ':'. Ranges
specified using a colon (e.g., 2:5) are expanded to 2 3 4 5.
17-28
Indexed Reference
Returning the contents of each cell of S.subs gives the index values for the first
dimension and a char vector ':' for the second dimension:
S.subs{:}
ans =
1 2 3 4
ans =
The default subsref returns all array elements in rows 1 through 4 and all the columns
in the array.
The default subsref returns the contents of all cell array elements in rows 1 through 4
and all the columns in the array.
This expression:
A.Name
17-29
17 Specialize Object Behavior
See Also
Related Examples
• “Indexed Assignment” on page 17-31
• “Number of Arguments for subsref and subsasgn” on page 17-6
• “Modify nargout and nargin for Indexing Methods” on page 17-9
• “Code Patterns for subsref and subsasgn Methods” on page 17-21
17-30
Indexed Assignment
Indexed Assignment
In this section...
“How Indexed Assignment Works” on page 17-31
“Indexed Assignment to Objects” on page 17-33
“Compound Indexed Assignments” on page 17-33
Each of these statements results in a call by MATLAB to the subsasgn method of class A,
or a call to the built-in subsasgn function if the class of A does not implement a
subsasgn method.
MATLAB passes three arguments to subsasgn and requires subsasgn to return the
result of the assignment:
A = subsasgn(A,S,B)
The first argument, A, is the object being assigned the value in the third argument B.
The second argument is the indexing structure, substruct. S has two fields:
• S.type is a char vector containing '()', '{}', or '.' specifying the indexing type
used.
• S.subs is a cell array or character array containing the actual indices or field name. A
colon used as an index is passed in the cell array as the character ':'. Ranges
specified using a colon (e.g., 2:5) are expanded to 2 3 4 5.
17-31
17 Specialize Object Behavior
S contains:
S.type = '()'
S.subs = {2,3}
• Determines the class of A. If B is not the same class as A, then MATLAB tries to
construct an object of the same class as A using B as an input argument. If this
attempt fails, MATLAB returns an error.
• If A and B are, or can be made, into the same class, then MATLAB assigns the value of
B to the array element at row 2, column 3.
• If A does not exist before you execute the assignment statement, then MATLAB
initializes the five array elements that come before A(2,3) with default objects of
class B.
A{2,3} = B
S.type ='{}'
S.subs = {2,3}
This expression:
A.Name = B
S.type = '.'
S.subs = 'Name'
17-32
Indexed Assignment
• If A does not exist before you execute the assignment statement, MATLAB creates a
struct variable, A with field Name and assigns the value of B to this field location.
• If struct A exists, but has no field Name, then MATLAB adds the field Name and
assigns the value of B to the new field location.
• If struct A exists and has a Name field, then MATLAB assigns the value of B to Name.
You can redefine all or some of these assignment behaviors by implementing a subsasgn
method for your class.
A.Name = B
S.type = '.'
S.subs = 'Name'
A(1,2).PropertyName(1:4) = B
17-33
17 Specialize Object Behavior
See Also
Related Examples
• “Indexed Reference” on page 17-28
• “Number of Arguments for subsref and subsasgn” on page 17-6
• “Modify nargout and nargin for Indexing Methods” on page 17-9
• “Code Patterns for subsref and subsasgn Methods” on page 17-21
17-34
end as Object Index
Classes can overload the end function to implement specialized behavior. If your class
defines an end method, MATLAB calls that method to determine how to interpret the
expression.
ind = end(A,k,n)
• A is the object
• k is the index in the expression using the end syntax
• n is the total number of indices in the expression
• ind is the index value to use in the expression
For example, consider the 3-by-5 array A. When MATLAB encounters the expression:
A(end-1,:)
MATLAB calls the end method defined for the object A using the arguments:
ind = end(A,1,2)
These arguments mean that the end statement occurs in the first index and there are two
indices. The end class method returns the index value for the last element of the first
dimension (from which 1 is subtracted in this case). The original expression is evaluated
as:
A(3-1,:)
17-35
17 Specialize Object Behavior
If your class implements an end method, ensure that it returns a value appropriate for the
class.
obj(4:end)
obj.Data(2,3:end)
This end method determines a positive integer value for end. The method returns the
value so that MATLAB can use it in the indexing expression.
See Also
Related Examples
• “Class with Modified Indexing” on page 17-39
• “Objects in Index Expressions” on page 17-37
17-36
Objects in Index Expressions
Objects Indexes
MATLAB can use objects as indices in indexed expressions. The rules of array indexing
apply — indices must be positive integers. Therefore, MATLAB must be able to derive a
value from the object that is a positive integer for use in the indexed expression.
Indexed expressions like X(A), where A is an object, cause MATLAB to call the
subsindex function. However, if an indexing expression results in a call to an overloaded
subsref or subsasgn method defined by the class of X, then MATLAB does not call
subsindex.
subsindex Implementation
subsindex must return the value of the object as a zero-based integer index value in the
range 0 to prod(size(X))-1.
17-37
17 Specialize Object Behavior
Suppose that you want to use object A to index into object B. B can be a single object or
an array, depending on the class designs.
C = B(A);
Here are two examples of subsindex methods. The first assumes you can convert class A
to a uint8. The second assumes class A stores an index value in a property.
• The subsindex method implemented by class A can convert the object to numeric
format to be used as an index:
The class of obj implements a uint8 method to provide the conversion from the
object to an integer value.
• Class A implements subsindex to return a numeric value that is stored in a property:
See Also
numArgumentsFromSubscript | subsasgn | subsref
Related Examples
• “end as Object Index” on page 17-35
More About
• “Modify nargout and nargin for Indexing Methods” on page 17-9
17-38
Class with Modified Indexing
Class Description
The class has three properties:
d =
8 9 3 9
9 6 5 2
2 1 9 9
17-39
17 Specialize Object Behavior
obj =
The constructor arguments pass the values for the Data and Description properties.
The clock function assigns the value to the Date property from within the constructor.
This approach captures the time and date information when each instance is created.
Here is the preliminary code listing without the subsref, subsasgn double, and plus
methods.
classdef MyDataClass
properties
Data
Description
end
properties (SetAccess = private)
Date
end
methods
function obj = MyDataClass(data,desc)
if nargin > 0
obj.Data = data;
end
if nargin > 1
obj.Description = desc;
end
obj.Date = clock;
end
end
end
17-40
Class with Modified Indexing
obj.Data(2,3)
ans =
5
• And to add the functionality to index into the Data property with an expression like
this statement:
obj(2,3)
If you redefine '()' indexing to support access to the Data property, you cannot create
arrays of MyDataClass objects and use '()' indexing to access individual objects. You
can reference only scalar objects.
To achieve the design goals, the subsref method must handle all indexing types. The
subsref method:
17-41
17 Specialize Object Behavior
obj.Data(2,3) = 9;
• Add the functionality to assign values to the Data property with an expression like this
statement:
obj(2,3) = 9;
The substruct function redefines the index type and index subscripts structure that
MATLAB passes to subsref and subsasgn.
17-42
Class with Modified Indexing
end
end
Allow direct addition of the Data property values by implementing a plus method.
Implementing a plus method enables the use of the + operator for addition of
MyDataClass objects.
Because the plus method implements addition by adding double arrays, MATLAB:
The plus method uses the double method to convert the object to numeric values before
performing the addition:
function a = double(obj)
a = obj.Data;
end
function c = plus(obj,b)
c = double(obj) + double(b);
end
For example, the plus method enables you to add a scalar number to the object Data
array.
Here are the values of the Data, displayed using indexed reference:
obj(:,:)
ans =
8 9 3 9
17-43
17 Specialize Object Behavior
9 6 9 2
2 1 9 9
obj + 7
ans =
15 16 10 16
16 13 16 9
9 8 16 16
MyDataClass.m
This definition for MyDataClass includes the end indexing method discussed in “end as
Object Index” on page 17-35.
classdef MyDataClass
% Example for "A Class with Modified Indexing"
properties
Data
Description
end
properties (SetAccess = private)
Date
end
methods
function obj = MyDataClass(data,desc)
% Support 0-2 args
if nargin > 0
obj.Data = data;
end
if nargin > 1
obj.Description = desc;
end
obj.Date = clock;
end
17-44
Class with Modified Indexing
case '()'
if length(s)<2
sref = builtin('subsref',obj.Data,s);
return
else
sref = builtin('subsref',obj,s);
end
case '{}'
error('MyDataClass:subsref',...
'Not a supported subscripted reference')
end
end
function a = double(obj)
a = obj.Data;
end
function c = plus(obj,b)
c = double(obj) + double(b);
end
17-45
17 Specialize Object Behavior
See Also
Related Examples
• “end as Object Index” on page 17-35
• “Number of Arguments for subsref and subsasgn” on page 17-6
17-46
Operator Overloading
Operator Overloading
In this section...
“Why Overload Operators” on page 17-47
“How to Define Operators” on page 17-47
“Sample Implementation — Addable Objects” on page 17-48
“MATLAB Operators and Associated Functions” on page 17-50
Each operator has an associated function (e.g., the + operator has an associated plus.m
function). You can implement any operator by creating a class method with the
appropriate name. This method can perform whatever steps are appropriate for the
operation being implemented.
For a list of operators and associated function names, see “MATLAB Operators and
Associated Functions” on page 17-50.
User-defined classes have a higher precedence than built-in classes. For example,
suppose q is an object of class double and p is a user-defined class. Both of these
expressions generate a call to the plus method in the user-define class, if it exists:
q + p
p + q
17-47
17 Specialize Object Behavior
Whether this method can add objects of class double and the user-defined class depends
on how you implement the method.
When p and q are objects of different classes, MATLAB applies the rules of precedence to
determine which method to use.
Operator Precedence
Overloaded operators retain the original MATLAB precedence for the operator. For
information on operator precedence, see “Operator Precedence”.
The Adder class also implements the less than operator (<) by defining a lt method. The
lt method returns a logical value after comparing the values in each object
NumericData property.
classdef Adder
properties
NumericData
end
methods
function obj = Adder(val)
obj.NumericData = val;
end
function r = plus(obj1,obj2)
a = double(obj1);
b = double(obj2);
r = Adder(a + b);
end
function d = double(obj)
d = obj.NumericData;
end
function tf = lt(obj1,obj2)
if obj1.NumericData < obj2.NumericData
17-48
Operator Overloading
tf = true;
else
tf = false;
end
end
end
end
Using a double converter enables you to add numeric values to Adder objects and to
perform addition on objects of the class.
a = Adder(1:10)
a =
NumericData: [1 2 3 4 5 6 7 8 9 10]
ans =
NumericData: [2 4 6 8 10 12 14 16 18 20]
b =
NumericData: [256 257 258 259 260 261 262 263 264 265]
ans =
17-49
17 Specialize Object Behavior
Ensure that your class provides any error checking required to implement your class
design.
17-50
See Also
a:b colon(a,b)
a' ctranspose(a) Complex conjugate
transpose
a.' transpose(a) Matrix transpose
[a b] horzcat(a,b,...) Horizontal concatenation
[a; b] vertcat(a,b,...) Vertical concatenation
a(s1,s2,...sn) subsref(a,s) Subscripted reference
a(s1,...,sn) = b subsasgn(a,s,b) Subscripted assignment
b(a) subsindex(a) Subscript index
See Also
Related Examples
• “Define Arithmetic Operators” on page 19-21
• “Methods That Modify Default Behavior” on page 17-2
17-51
18
• A header showing the class name, and the dimensions for nonscalar arrays.
• A list of all nonhidden public properties, shown in the order of definition in the class.
The actual display depends on whether the object is scalar or nonscalar. Also, there are
special displays for a scalar handle to a deleted object and empty object arrays. Objects in
all of these states are displayed differently if the objects have no properties.
The details function creates the default detailed display. The detailed display adds
these items to the simple display:
See “Class with Default Object Display” on page 18-14 for an example of how MATLAB
displays objects.
MATLAB displays object properties that have public get access and are not hidden (see
“Property Attributes” on page 8-9). Inherited abstract properties are excluded from
display. When the object being displayed is scalar, any dynamic properties attached to the
object are also included.
18-2
Custom Display Interface
CustomDisplay Class
The matlab.mixin.CustomDisplay class provides an interface that you can use to
customize object display for your class. To use this interface, derive your class from
CustomDisplay:
The CustomDisplay interface does not allow you to override disp, display, and
details. Instead, override any combination of the customization methods defined for
this purpose.
• Part builder methods build the strings used for the standard display. Override any of
these methods to change the respective parts of the display.
• State handler methods are called for objects in specific states, like scalar, nonscalar,
and so on. Override any of these methods to handle objects in a specific state.
All of these methods have protected access and must be defined as protected in your
subclass of CustomDisplay (that is, Access = protected).
There are three parts that makeup the standard object display — header, property list,
and footer
For example, here is the standard object display for a containers.Map object:
18-3
18 Customizing Object Display
The default object display does not include a footer. The detailed display provides more
information:
Each part of the object display has an associated method that assembles the respective
part of the display.
18-4
Custom Display Interface
There are four object states that affect how MATLAB displays objects:
Each object state has an associated method that MATLAB calls whenever displaying
objects that are in that particular state.
Utility Methods
The CustomDisplay class provides utility methods that return strings that are used in
various parts of the different display options. These static methods return text that
simplifies the creation of customized object displays.
If the computer display does not support hypertext linking, the strings are returned
without the links.
18-5
18 Customizing Object Display
See Also
Related Examples
• “How CustomDisplay Works” on page 18-7
18-6
How CustomDisplay Works
For example, suppose obj is a valid scalar object of a class derived from
CustomDisplay. If you type obj at the command line without terminating the statement
with a semicolon:
>> obj
18-7
18 Customizing Object Display
MATLAB follows a similar sequence for nonscalar object arrays and empty object arrays.
Only an instance of a handle class can be in a state of scalar handle to a deleted object.
18-8
See Also
See Also
Related Examples
• “Class with Default Object Display” on page 18-14
18-9
18 Customizing Object Display
However, reporting an object as scalar when in fact the object is empty results in the
object displaying as an empty object array. The default methods of the CustomDisplay
interface always determine if the input is an empty array before attempting to access
property values.
18-10
See Also
See Also
Related Examples
• “Methods That Modify Default Behavior” on page 17-2
18-11
18 Customizing Object Display
To use the CustomDisplay interface, the root class of the heterogeneous hierarchy can
declare these methods as Sealed and Access = protected.
If you do not need to override a particular method, then call the superclass method, as
shown in the following code.
For example, the following code shows modifications to the getPropertyGroups and
displayScalarObject methods, while using the superclass implementation of all
others.
classdef RootClass < matlab.mixin.CustomDisplay & matlab.mixin.Heterogeneous
%...
methods (Sealed, Access = protected)
function header = getHeader(obj)
header = [email protected](obj);
end
function displayNonScalarObject(obj)
[email protected](obj);
end
function displayScalarObject(obj)
% Override of this method
% ...
end
function displayEmptyObject(obj)
[email protected](obj);
end
18-12
See Also
function displayScalarHandleToDeletedObject(obj)
[email protected](obj);
end
end
end
See Also
Related Examples
• “Designing Heterogeneous Class Hierarchies” on page 10-24
18-13
18 Customizing Object Display
EmployeeInfo is also a handle class. Therefore instances of this class can be in the state
referred to as a handle to a deleted object. This state does not occur with value classes
(classes not derived from handle).
18-14
Class with Default Object Display
end
end
>>Emp123 = EmployeeInfo;
Name: 'Bill Tork'
Job Title: 'Software Engineer'
Department: 'Product Development'
Salary: 1000
Password: 'bill123'
>>Emp123
Emp123 =
18-15
18 Customizing Object Display
>>[Emp123,Emp124]
ans
Name
JobTitle
Department
Salary
Password
Empt =
Name
JobTitle
Department
Salary
Password
Use isempty to test for empty object arrays. An empty object array is not scalar because
its dimensions can never be 1–by-1.
>> emt = EmployeeInfo.empty
emt =
Name
JobTitle
18-16
Class with Default Object Display
Department
Salary
Password
>> isscalar(emt)
ans =
>> delete(Emp123)
>> Emp123
Emp123 =
handle to deleted EmployeeInfo
Note isvalid is a handle class method. Calling isvalid on a value class object causes
an error.
details(Emp123)
EmployeeInfo handle with properties:
18-17
18 Customizing Object Display
See Also
Related Examples
• “Custom Display Interface” on page 18-2
18-18
Choose a Technique for Display Customization
If you are making small changes to the default layout, then override the relevant part
builder methods (“Part Builder Methods” on page 18-4). For example, suppose you want
to:
If you are defining a nonstandard display for a particular object state (scalar, for
example), then the best approach is to override the appropriate state handler method
(“State Handler Methods” on page 18-5).
In some cases, a combination of method overrides might be the best approach. For
example, your implementation of displayScalarObject might
• Use some of the utility methods (“Utility Methods” on page 18-5) to build your own
display strings using parts from the default display
• Call a part builder method to get the default text for that particular part of the display
• Implement a completely different display for scalar objects.
Once you override any CustomDisplay method, MATLAB calls your override in all cases
where the superclass method would have been called. For example, if you override the
18-19
18 Customizing Object Display
getHeader method, your override must handle all cases where a state handler method
calls getHeader. (See “Methods Called for a Given Object State” on page 18-8)
Use a nonstandard layout for scalar object display that is fully defined in the
displayScalarObject method:
Use standard display layout, but create a custom property list for scalar and nonscalar
display:
Use standard display layout, but create a custom property list for scalar only. Call the
superclass getPropertyGroups for the nonscalar case.
classdef MyClass < matlab.mixin.CustomDisplay
properties
Prop1
18-20
Choose a Technique for Display Customization
Prop2
Prop3
end
methods(Access = protected)
function groups = getPropertyGroups(obj)
if isscalar(obj)
% Scalar case: change order
propList = {'Prop2','Prop1','Prop3'};
groups = matlab.mixin.util.PropertyGroup(propList)
else
% Nonscalar case: call superclass method
groups = [email protected](obj);
end
end
end
end
Change the values displayed for some properties in the scalar case by creating property/
value pairs in a struct. This getPropertyGroups method displays only Prop1 and
Prop2, and displays the value of Prop2 as Prop1 divided by Prop3.
classdef MyClass < matlab.mixin.CustomDisplay
properties
Prop1
Prop2
Prop3
end
methods(Access = protected)
function groups = getPropertyGroups(obj)
if isscalar(obj)
% Specify the values to be displayed for properties
propList = struct('Prop1',obj.Prop1,...
'Prop2',obj.Prop1/obj.Prop3);
groups = matlab.mixin.util.PropertyGroup(propList)
else
% Nonscalar case: call superclass method
groups = [email protected](obj);
end
end
end
end
18-21
18 Customizing Object Display
18-22
Customize Property Display
Objective
Change the order and number of properties displayed for an object of your class.
properties
Name
JobTitle
Department
Salary
Password
end
In the default scalar object display, MATLAB displays all the public properties along with
their values. However, you want to display only Department, JobTitle, and Name, in
that order. You can do this by deriving from CustomDisplay and overriding the
getPropertyGroups method.
Your override
18-23
18 Customizing Object Display
end
end
When you create a PropertyGroup object using a cell array of property names, MATLAB
automatically
The getPropertyGroups method is not called to create the display for a scalar handle
to a deleted object.
• Changes the value displayed for the Password property to a '*' character for each
character in the password.
• Displays the text 'Not Available' for the Salary property.
methods (Access = protected)
function propgrp = getPropertyGroups(obj)
if ~isscalar(obj)
propgrp = [email protected](obj);
else
pd(1:length(obj.Password)) = '*';
propList = struct('Department',obj.Department,...
'JobTitle',obj.JobTitle,...
'Name',obj.Name,...
'Salary','Not available',...
'Password',pd);
propgrp = matlab.mixin.util.PropertyGroup(propList);
end
end
end
18-24
See Also
See Also
Related Examples
• “Choose a Technique for Display Customization” on page 18-19
18-25
18 Customizing Object Display
Objective
Customize each of the three parts of the display — header, property groups, and footer.
Note This example uses the EmployeeInfo class described in the “Class with Default
Object Display” on page 18-14 section.
For properties:
• Nonscalar object arrays display a subset of property names in a different order than
the default.
• Scalar objects create two property groups that have titles (Public Info and
Personal Info).
• Add a footer to the display, only when the object is a valid scalar that displays property
values.
18-26
Customize Header, Property List, and Footer
Emp123 =
Public Info
Name: 'Bill Tork'
JobTitle: 'Software Engineer'
Personal Info
Salary: 1000
Password: 'bill123'
Company Private
[Emp123,Emp124]
ans =
Department
Name
JobTitle
>> EmployeeInfo.empty(0,5)
ans =
Department
Name
JobTitle
>> delete(Emp123)
>> Emp123
18-27
18 Customizing Object Display
Emp123 =
Implementation
• getHeader
• getPropertyGroups
• getFooter
Each method must produce the desired results with each of the following inputs:
• Scalar object
• Nonscalar object array
• Empty object array
• Nonscalar (including empty object) arrays call the superclass getHeader, which
returns the default header.
• Scalar handles to deleted objects do not result in a call to getHeader.
• Scalar inputs build a custom header using the getClassNameForHeader static
method to return linked class name text, and the value of the Department property.
Here is the EmployeeInfo override of the getHeader method. The required protected
access is inherited from the superclass.
methods (Access = protected)
function header = getHeader(obj)
if ~isscalar(obj)
header = [email protected](obj);
else
className = matlab.mixin.CustomDisplay.getClassNameForHeader(obj);
newHeader = [className,' Dept: ',obj.Department];
header = sprintf('%s\n',newHeader);
end
18-28
Customize Header, Property List, and Footer
end
end
getPropertyGroups Override
MATLAB calls getPropertyGroups to get the PropertyGroup objects, which control
how properties are displayed. This method override defines two different property lists
depending on the object’s state:
• For nonscalar inputs, including empty arrays and arrays containing handles to deleted
objects, create a property list as a cell array to reorder properties.
By default, MATLAB does not display property values for nonscalar inputs.
• For scalar inputs, create two property groups with titles. The scalar code branch lists
properties in a different order than the nonscalar case and includes Salary and
Password properties. MATLAB automatically assigns property values.
• Scalar handles to deleted objects do not result in a call to getPropertyGroups.
getFooter Override
MATLAB calls getFooter to get the footer text. The EmployeeInfo getFooter method
defines a footer for the display, which is included only when the input is a valid scalar
object. In all other cases, getFooter returns an empty char vector.
18-29
18 Customizing Object Display
18-30
See Also
propgrp(2) = matlab.mixin.util.PropertyGroup(propList2,gTitle2);
end
end
See Also
Related Examples
• “Choose a Technique for Display Customization” on page 18-19
18-31
18 Customizing Object Display
Objective
Customize the display of scalar objects.
Note This example uses the EmployeeInfo class described in the “Class with Default
Object Display” on page 18-14 section.
• Modify the header to include the department name obtained from the Department
property
• Group properties into two categories titled Public Info and Personal Info.
• Modify which properties are displayed
• Modify the values displayed for Personal Info category
• Use the default displayed for nonscalar objects, including empty arrays, and scalar
deleted handles
For example, here is the customized display of an object of the EmployeeInfo class.
Emp123 =
Public Info
Name: 'Bill Tork'
JobTitle: 'Software Engineer'
18-32
Customize Display of Scalar Objects
Personal Info
Salary: 'Level: 10'
Password: '*******'
Implementation
This implementation:
18-33
18 Customizing Object Display
end
end
getPropertyGroups Override
MATLAB calls getPropertyGroups when displaying scalar or nonscalar objects.
However, MATLAB does not call this method when displaying a scalar handle to a deleted
object.
The EmployeeInfo class overrides this method to implement the property groups for
scalar object display.
This implementation calls the superclass getPropertyGroups method if the input is not
scalar. If the input is scalar, this method:
18-34
Customize Display of Scalar Objects
18-35
18 Customizing Object Display
See Also
Related Examples
• “Choose a Technique for Display Customization” on page 18-19
18-36
Customize Display of Object Arrays
Objective
Customize the display of nonscalar objects, including empty object arrays.
Note This example uses the EmployeeInfo class described in the “Class with Default
Object Display” on page 18-14 section.
2. Employee:
Name: 'Alice Blackwell'
Department: 'QE'
18-37
18 Customizing Object Display
3. Employee:
Name: 'Nancy Green'
Department: 'Documentation'
1. Employee:
Name: 'Bill Tork'
Department: 'Product Development'
3. Employee:
Name: 'Nancy Green'
Department: 'Documentation'
To achieve the desired result, the EmployeeInfo class overrides the following methods
of the matlab.mixin.CustomDisplay class:
• Builds header text using convertDimensionsToString to obtain the array size and
getClassNameForHeader to get the class name with a link to the help for that class.
• Displays the modified header text.
• Loops through the elements in the array, building two different subheaders depending
on the individual object state. In the loop, this method:
• Detects handles to deleted objects (using the isvalid handle class method). Uses
getDeletedHandleText and getClassNameForHeader to build text for array
elements that are handles to deleted objects.
• Builds a custom subheader for valid object elements in the array
• Creates a PropertyGroup object containing the Name and Department properties
for valid objects
18-38
Customize Display of Object Arrays
18-39
18 Customizing Object Display
Empt =
18-40
See Also
propgrp = matlab.mixin.util.PropertyGroup(propList);
matlab.mixin.CustomDisplay.displayPropertyGroups(o,propgrp);
end
end
end
function displayEmptyObject(obj)
dimstr = matlab.mixin.CustomDisplay.convertDimensionsToString(obj);
className = matlab.mixin.CustomDisplay.getClassNameForHeader(obj);
emptyHeader = [dimstr,' ',className,' with no employee information'];
header = sprintf('%s\n',emptyHeader);
disp(header)
end
end
end
See Also
Related Examples
• “Choose a Technique for Display Customization” on page 18-19
18-41
18 Customizing Object Display
Display Methods
Subclassing matlab.mixin.CustomDisplay is the best approach to customizing object
display. However, if you do not derive your class from matlab.mixin.CustomDisplay,
overload the disp function to change how MATLAB displays objects of your class.
MATLAB calls the display function whenever an object is referred to in a statement that
is not terminated by a semicolon. For example, the following statement creates the
variable a. MATLAB calls display, which displays the value of a in the command line.
a = 5
a =
5
Overloaded disp
The built-in display function prints the name of the variable that is being displayed, if
an assignment is made, or otherwise uses ans as the variable name. Then display calls
disp to handle the actual display of the values.
If the variable that is being displayed is an object of a class that overloads disp, then
MATLAB always calls the overloaded method. MATLAB calls display with two
arguments and passes the variable name as the second argument.
18-42
See Also
• MATLAB executes a statement that returns a value and is not terminated with a
semicolon.
• There is no left-side variable, then MATLAB prints ans = followed by the value.
• Code explicitly invokes the display function.
• If the input argument is an existing variable, display prints the variable name and
equal sign, followed by the value.
• If the input is the result of an expression, display does not print ans =.
MATLAB invokes the built-in disp function when the following occurs:
For empty built-in types (numeric types, char, struct, and cell) the display function
displays:
See Also
Related Examples
• “Custom Display Interface” on page 18-2
• “Overload disp for DocPolynom” on page 19-17
18-43
19
Object Requirements
This example implements a class to represent polynomials in the MATLAB language. The
design requirements are:
• Value class behavior—a polynomial object should behave like MATLAB numeric
variables when copied and passed to functions.
• Specialized display and indexing
• Objects can be scalar only. The specialization of display and indexing functionality
preclude normal array behavior.
• Arithmetic operations
• Double converter simplifying the use of polynomial object with existing MATLAB
functions that accept numeric inputs.
The following table summarizes the properties defined for the DocPolynom class.
19-2
Representing Polynomials with Classes
The following table summarizes the methods for the DocPolynom class.
Create DocPolynom objects to represent the following polynomials. The argument to the
constructor function contains the polynomial coefficients and
.
p1 = DocPolynom([1 0 -2 -5])
p1 =
x^3 - 2*x - 5
p2 = DocPolynom([2 0 3 2 -7])
19-3
19 Defining Custom Data Types
p2 =
2*x^4 + 3*x^2 + 2*x - 7
Find the roots of the polynomial by passing the coefficients to the roots function.
roots(p1.coef)
ans =
2.0946 + 0.0000i
-1.0473 + 1.1359i
-1.0473 - 1.1359i
MATLAB calls the plus method defined for the DocPolynom class when you add two
DocPolynom objects.
p1 + p2
ans =
19-4
Representing Polynomials with Classes
19-5
19 Defining Custom Data Types
19-6
Representing Polynomials with Classes
19-7
19 Defining Custom Data Types
19-8
Representing Polynomials with Classes
function r = mtimes(obj1,obj2)
obj1 = DocPolynom(obj1);
obj2 = DocPolynom(obj2);
r = DocPolynom(conv(obj1.coef,obj2.coef));
end
end
end end statements for methods and
end
for classdef.
classdef DocPolynom
% Documentation example
% A value class that implements a data type for polynomials
% See Implementing a Class for Polynomials in the
% MATLAB documentation for more information.
properties
coef
end
% Class methods
methods
function obj = DocPolynom(c)
19-9
19 Defining Custom Data Types
if nargin > 0
if isa(c,'DocPolynom')
obj.coef = c.coef;
else
obj.coef = c(:).';
end
end
end % DocPolynom
function obj = set.coef(obj,val)
if ~isa(val,'double')
error('Coefficients must be doubles')
end
% Remove leading zeros
ind = find(val(:).'~=0);
if ~isempty(ind);
obj.coef = val(ind(1):end);
else
obj.coef = val;
end
end % set.coef
function c = double(obj)
c = obj.coef;
end % double
19-10
Representing Polynomials with Classes
a = -a; %#ok<FXSET>
ind = ind + 1;
end
end
if a ~= 1 || d == 0
if a == -1
s(ind) = {'-'};
ind = ind + 1;
else
s(ind) = {num2str(a)};
ind = ind + 1;
if d > 0
s(ind) = {'*'};
ind = ind + 1;
end
end
end
if d >= 2
s(ind) = {['x^' int2str(d)]};
ind = ind + 1;
elseif d == 1
s(ind) = {'x'};
ind = ind + 1;
end
end
d = d - 1;
end
end
str = [s{:}];
end % char
function disp(obj)
% DISP Display object in MATLAB syntax
c = char(obj);
if iscell(c)
disp([' ' c{:}])
else
disp(c)
end
end % disp
function dispPoly(obj,x)
% evaluate obj at x
p = char(obj);
19-11
19 Defining Custom Data Types
e = @(x)eval(p);
y = zeros(length(x));
disp(['y = ',p])
for k = 1:length(x)
y(k) = e(x(k));
disp([' ',num2str(y(k)),...
' = f(x = ',...
num2str(x(k)),')'])
end
end
function b = subsref(a,s)
% SUBSREF Implementing the following syntax:
% obj([1 ...])
% obj.coef
% obj.disp
% out = obj.method(args)
% out = obj.method
switch s(1).type
case '()'
ind = s.subs{:};
b = polyval(a.coef,ind);
case '.'
switch s(1).subs
case 'coef'
b = a.coef;
case 'disp'
disp(a)
otherwise
if length(s)>1
b = a.(s(1).subs)(s(2).subs{:});
else
b = a.(s.subs);
end
end
otherwise
error('Specify value for x as obj(x)')
end
end % subsref
function r = plus(obj1,obj2)
% PLUS Implement obj1 + obj2 for DocPolynom
obj1 = DocPolynom(obj1);
obj2 = DocPolynom(obj2);
19-12
Representing Polynomials with Classes
k = length(obj2.coef) - length(obj1.coef);
zp = zeros(1,k);
zm = zeros(1,-k);
r = DocPolynom([zp,obj1.coef] + [zm,obj2.coef]);
end % plus
function r = minus(obj1,obj2)
% MINUS Implement obj1 - obj2 for DocPolynoms.
obj1 = DocPolynom(obj1);
obj2 = DocPolynom(obj2);
k = length(obj2.coef) - length(obj1.coef);
zp = zeros(1,k);
zm = zeros(1,-k);
r = DocPolynom([zp,obj1.coef] - [zm,obj2.coef]);
end % minus
function r = mtimes(obj1,obj2)
% MTIMES Implement obj1 * obj2 for DocPolynoms.
obj1 = DocPolynom(obj1);
obj2 = DocPolynom(obj2);
r = DocPolynom(conv(obj1.coef,obj2.coef));
end % mtimes
end % methods
end % classdef
methods
function obj = DocPolynom(c)
if isa(c,'DocPolynom')
obj.coef = c.coef;
else
obj.coef = c(:).';
end
end
end
19-13
19 Defining Custom Data Types
• Input argument is a DocPolynom object — If you call the constructor function with an
input argument that is already a DocPolynom object, the constructor returns a new
DocPolynom object with the same coefficients as the input argument. The isa
function checks for this input.
• Input argument is a coefficient vector — If the input argument is not a DocPolynom
object, the constructor attempts to reshape the values into a vector and assign them to
the coef property.
The coef property set method restricts property values to doubles. See “Remove
Irrelevant Coefficients” on page 19-14 for a description of the property set method.
This statement creates an instance of the DocPolynom class with the specified
coefficients. Note that the display of the object shows the equivalent polynomial using
MATLAB language syntax. The DocPolynom class implements this display using the disp
and char class methods.
Some DocPolynom class methods use the length of the coefficient vector to determine
the degree of the polynomial. It is useful, therefore, to remove leading zeros from the
coefficient vector so that its length represents the true value.
The DocPolynom class stores the coefficient vector in a property that uses a set method
to remove leading zeros from the specified coefficients before setting the property value.
methods
function obj = set.coef(obj,val)
if ~isa(val,'double')
error('Coefficients must be doubles')
end
ind = find(val(:).'~=0);
if ~isempty(ind);
19-14
Representing Polynomials with Classes
obj.coef = val(ind(1):end);
else
obj.coef = val;
end
end
end
The double converter method for the DocPolynom class simply returns the coefficient
vector:
methods
function c = double(obj)
c = obj.coef;
end
end
p = DocPolynom([1 0 -2 -5]);
the statement:
c = double(p)
returns:
c=
1 0 -2 -5
19-15
19 Defining Custom Data Types
class(c)
ans =
double
The char method produces a char vector that represents the polynomial displayed as
powers of x. The char vector returned is a syntactically correct MATLAB expression.
The char method uses a cell array to collect the char vector components that make up
the displayed polynomial.
The disp method uses the char method to format the DocPolynom object for display.
The evalPoly method uses char to create the MATLAB expression to evaluate.
Users of DocPolynom objects are not likely to call the char or disp methods directly, but
these methods enable the DocPolynom class to behave like other data classes in
MATLAB.
19-16
Representing Polynomials with Classes
if d > 0
s(ind) = {'*'};
ind = ind + 1;
end
end
end
if d >= 2
s(ind) = {['x^' int2str(d)]};
ind = ind + 1;
elseif d == 1
s(ind) = {'x'};
ind = ind + 1;
end
end
d = d - 1;
end
end
str = [s{:}];
end
end
This disp method relies on the char method to produce a text representation of the
polynomial, which it then displays on the screen.
The char method returns a cell array or the character '0' if the coefficients are all zero.
methods
function disp(obj)
c = char(obj);
if iscell(c)
disp([' ' c{:}])
else
disp(c)
end
end
end
The statement:
p = DocPolynom([1 0 -2 -5])
19-17
19 Defining Custom Data Types
creates a DocPolynom object. Because the statement is not terminated with a semicolon,
the resulting output is displayed on the command line:
p =
x^3 - 2*x - 5
methods
function dispPoly(obj,x)
p = char(obj);
e = @(x)eval(p);
y = zeros(length(x));
disp(['y = ',p])
for k = 1:length(x)
y(k) = e(x(k));
disp([' ',num2str(y(k)),...
' = f(x = ',...
num2str(x(k)),')'])
end
end
end
p = DocPolynom([1 0 -2 -5])
p =
x^3 - 2*x - 5
dispPoly(p,[3 5 9])
y = x^3 - 2*x - 5
16 = f(x = 3)
110 = f(x = 5)
706 = f(x = 9)
19-18
Representing Polynomials with Classes
p = DocPolynom([1 0 -2 -5])
p =
x^3 - 2*x - 5
The following subscripted expression evaluates the value of the polynomial at x = 3 and
at x = 4, and returns the resulting values:
p([3 4])
ans =
16 51
If a class defines a subsref method, MATLAB calls this method for objects of this class
whenever a subscripted reference occurs. The subsref method must define all the
indexed reference behaviors, not just a specific case that you want to change.
19-19
19 Defining Custom Data Types
• obj = p.method — Use dot notation to call methods without arguments and return a
modified object.
p = DocPolynom([1 0 -2 -5])
p =
x^3 - 2*x - 5
polyval(p.coef,[3 5 7])
ans =
16 110 324
• Polynomial coefficients
• Values of the independent variable at which to evaluate the polynomial
The polyval function returns the value of f(x) at these values. subsref calls polyval
through the statements:
case '()'
ind = s.subs{:};
b = polyval(a.coef,ind);
When implementing subsref to support method calling with arguments using dot
notation, both the type and subs structure fields contain multiple elements.
The subsref method implements all subscripted reference explicitly, as show in the
following code listing.
methods
function b = subsref(a,s)
switch s(1).type
case '()'
ind = s.subs{:};
b = polyval(a.coef,ind);
case '.'
switch s(1).subs
case 'coef'
b = a.coef;
19-20
Representing Polynomials with Classes
case 'disp'
disp(a)
otherwise
if length(s)>1
b = a.(s(1).subs)(s(2).subs{:});
else
b = a.(s.subs);
end
end
otherwise
error('Specify value for x as obj(x)')
end
end
end
When overloading arithmetic operators, consider the data types you must support. The
plus, minus, andmtimes methods are defined for the DocPolynom class to handle
addition, subtraction, and multiplication on DocPolynom — DocPolynom and
DocPolynom — double combinations of operands.
Define + Operator
The following method overloads the plus (+) operator for the DocPolynom class:
methods
function r = plus(obj1,obj2)
19-21
19 Defining Custom Data Types
obj1 = DocPolynom(obj1);
obj2 = DocPolynom(obj2);
k = length(obj2.coef) - length(obj1.coef);
zp = zeros(1,k);
zm = zeros(1,-k);
r = DocPolynom([zp,obj1.coef] + [zm,obj2.coef]);
end
end
• Ensure that both input arguments are DocPolynom objects so that expressions such
as
p + 1
Define - Operator
Implement the minus operator (-) using the same approach as the plus (+) operator.
Implement the mtimes method to compute the product p*q. The mtimes method
implements matrix multiplication since the multiplication of two polynomials is the
convolution (conv) of their coefficient vectors:
19-22
Representing Polynomials with Classes
methods
function r = mtimes(obj1,obj2)
obj1 = DocPolynom(obj1);
obj2 = DocPolynom(obj2);
r = DocPolynom(conv(obj1.coef,obj2.coef));
end
end
p = DocPolynom([1 0 -2 -5]);
The following two arithmetic operations call the DocPolynom plus and mtimes methods:
q = p+1;
r = p*q;
to produce
q =
x^3 - 2*x - 4
r =
x^6 - 4*x^4 - 9*x^3 + 4*x^2 + 18*x + 20
19-23
20
A class design based on heterogeneous arrays provides a more convenient interface than,
for example, extracting elements from a cell array and operating on these elements
individually. For more information on the design of class hierarchies that support
heterogeneous arrays, see “Designing Heterogeneous Class Hierarchies” on page 10-24.
Note This example does not use valid terminology or techniques for managing financial
assets. The purpose of this example is only to illustrate techniques for defining
heterogeneous class hierarchies.
This example implements a system of classes to represent financial assets, such as stocks,
bonds, and cash. Classes to represent categories of assets have certain common
requirements. Each instance has one of the following:
20-2
A Class Hierarchy for Heterogeneous Arrays
• Textual description
• Type (stock, bond, or cash)
• Means to determine the current value of the asset
Heterogeneous arrays of these objects need methods that can operate on the whole array.
These operations include:
These requirements are factored into the class that is the root of the hierarchy. The root
class derives from matlab.mixin.Heterogeneous. In the following diagram, the
Assets class is the root of the hierarchy. The Stocks, Bonds, and Cash classes provide
the specialization required for each type of asset.
20-3
20 Designing Related Classes
20-4
A Class Hierarchy for Heterogeneous Arrays
Assets Class
The Assets class:
Properties
Methods
• pie — A sealed method that creates a pie chart showing the relative mix of asset
types.
• makeReport — A sealed method that creates a report listing the assets.
• getCurrentValue — An abstract method that each concrete subclass must
implement to return the current value of the asset.
• getDefaultScalarElement — matlab.mixin.Heterogeneous class method
overridden in the Assets class to specify a default object. The Assets class is
abstract so it cannot be used as the default object. For more information, see “Default
Object” on page 20-12.
20-5
20 Designing Related Classes
The pie and makeReport methods are examples of sealed methods that operate on
heterogeneous arrays composed of Stock, Bond, and Cash objects.
Each type of subclass object calculates its current value in a different way. If you add
another category of asset by adding another subclass to the hierarchy, this class must
implement its own version of a getCurrentValue method. Because all subclasses
implement a getCurrentValue method, the pie and makeReport methods work with
newly added subclasses.
For more information on the Sealed and Abstract method attributes, see “Method
Attributes” on page 9-5.
The Assets class and other classes in the hierarchy are contained in a package called
financial.
20-6
A Class Hierarchy for Heterogeneous Arrays
For code listings for pie and makeReport, see “Operating on an Assets Array” on page
20-14.
Stocks Class
The Stocks class represents a specific type of financial asset. It is a concrete class that
implements the abstract members defined by the Assets class, and defines class
properties and methods specific to this type of asset.
Properties
Methods
• Stocks — The constructor assigns property values and supports a default constructor
called with no input arguments.
20-7
20 Designing Related Classes
20-8
A Class Hierarchy for Heterogeneous Arrays
Bonds Class
The Bonds class represents a specific type of financial asset. It is a concrete class that
implements the abstract members defined by the Assets class and defines class
properties and methods specific to this type of asset.
Properties
Methods
• Bonds — The constructor assigns property values and supports a default constructor
called with no input arguments.
• getCurrentVlaue — This method is the Bonds class implementation of the abstract
method defined by the Assets class. It returns the current value of this asset.
• get.CurrentYield — The property get method for the dependent CurrentYield
property returns the current yield on this bond. For information on how to access web
serviced from MATLAB, see the webread function.
20-9
20 Designing Related Classes
CurrentYield double = 0
end
methods
function b = Bonds(description,facevalue,yield)
if nargin == 0
description = '';
facevalue = 0;
yield = 0;
end
b.Description = description;
b.FaceValue = facevalue;
b.Yield = yield;
b.Type = AssetTypes.Bonds;
end
function mv = getCurrentValue(b)
y = b.Yield;
cy = b.CurrentYield;
if cy <= 0 || y <= 0
mv = b.FaceValue;
else
mv = b.FaceValue*y/cy;
end
end
function r = get.CurrentYield(b)
% Implement web access to obtain
% Current yield for this bond
% Returning dummy value
r = 0.24;
end
end
end
Cash Class
The Cash class represents a specific type of financial asset. It is a concrete class that
implements the abstract members defined by the Assets class and defines class
properties and methods specific to this type of asset.
Properties
20-10
A Class Hierarchy for Heterogeneous Arrays
• Type — Cash class implementation of the abstract property defined by the Assets
class. This concrete property must use the same attributes as the abstract version
(that is, SetAccess private).
Methods
• Cash — The constructor assigns property values and supports a default constructor
called with no input arguments.
• getCurrentValue — This method is the Cash class implementation of the abstract
method defined by the Assets class. It returns the current value of this asset.
• save — This method adds the specified amount of cash to the existing amount and
returns a new Cash object with the current amount.
• spend — This method deducts the specified amount from the current amount and
returns a new Cash object with the current amount.
20-11
20 Designing Related Classes
Default Object
The design of this class hierarchy uses an abstract root class (Assets). Therefore, the
Assets class must specify a concrete class to use as a default object by overriding
getDefaultScalarElement. In this case, options include:
• Use one of the existing concrete classes for the default object.
• Define a concrete class in the hierarchy to use for the default object.
This implementation adds the DefaultAsset class to the hierarchy as a subclass of the
Assets class. MATLAB creates objects of this class when:
20-12
A Class Hierarchy for Heterogeneous Arrays
20-13
20 Designing Related Classes
• pie — Creates a pie chart showing the mix of asset types in the array.
• makeReport — Uses the MATLAB table object to display a table of asset
information.
To operate on a heterogeneous array, a method must be defined for the class of the
heterogeneous array and must be sealed. In this case, the class of heterogeneous arrays
is always the Assets class. MATLAB does not use the class of the individual elements of
the heterogeneous array when dispatching to methods.
The Assets class makeReport method builds a table using the common properties and
getCurrentValue method for each object in the array.
function makeReport(obj)
numMembers = length(obj);
descs = cell(1,numMembers);
types(numMembers) = "";
values(numMembers) = 0;
for k = 1:numMembers
descs{k} = obj(k).Description;
20-14
A Class Hierarchy for Heterogeneous Arrays
types(k) = obj(k).Type;
values(k) = obj(k).getCurrentValue;
end
t = table;
t.Description = descs';
t.Type = types';
t.Value = values';
disp(t)
end
The Assets class pie method calls the getCurrentValue method element-wise on
objects in the array to obtain the data for the pie chart.
function pie(assetArray)
stockAmt = 0; bondAmt = 0; cashAmt = 0;
for k=1:length(assetArray)
if isa(assetArray(k),'financial.Stocks')
stockAmt = stockAmt + assetArray(k).getCurrentValue;
elseif isa(assetArray(k),'financial.Bonds')
bondAmt = bondAmt + assetArray(k).getCurrentValue;
elseif isa(assetArray(k),'financial.Cash')
cashAmt = cashAmt + assetArray(k).getCurrentValue;
end
end
k = 1;
if stockAmt ~= 0
label(k) = {'Stocks'};
pieVector(k) = stockAmt;
k = k +1;
end
if bondAmt ~= 0
label(k) = {'Bonds'};
pieVector(k) = bondAmt;
k = k +1;
end
if cashAmt ~= 0
label(k) = {'Cash'};
pieVector(k) = cashAmt;
end
pie(pieVector,label)
tv = stockAmt + bondAmt + cashAmt;
stg = {['Total Value of Assets: $',num2str(tv,'%0.2f')]};
20-15
20 Designing Related Classes
title(stg,'FontSize',10)
end
20-16
See Also
See Also
Related Examples
• “Designing Heterogeneous Class Hierarchies” on page 10-24
• “Validate Property Values” on page 8-24
• “Set and Get Methods for Dependent Properties” on page 8-62
20-17