Matlab OOP
Matlab OOP
Matlab OOP
Object-Oriented Programming
R2015a
How to Contact MathWorks
Phone: 508-647-7000
Basic Example
2
A Simple Class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-2
Define a Simple Class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-2
Create an Object . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-3
Access Properties . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-3
Call Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-3
Add a Constructor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-4
v
Vectorize Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-5
Overloading Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-6
BasicClass Code Listing . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-6
vi Contents
dlnode Class Design . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3-36
Create Doubly Linked List . . . . . . . . . . . . . . . . . . . . . . . . . 3-37
Why a Handle Class for Linked Lists? . . . . . . . . . . . . . . . . 3-38
dlnode Class Synopsis . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3-39
Specialize the dlnode Class . . . . . . . . . . . . . . . . . . . . . . . . 3-51
Properties . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4-11
What You Can Define . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4-11
Initializing Property Values . . . . . . . . . . . . . . . . . . . . . . . . 4-11
Defining Default Values . . . . . . . . . . . . . . . . . . . . . . . . . . . 4-12
Assigning Property Values from the Constructor . . . . . . . . . 4-12
Initializing Properties to Unique Values . . . . . . . . . . . . . . . 4-13
Property Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4-13
vii
Property Access Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . 4-14
Referencing Object Properties Using Variables . . . . . . . . . . 4-15
viii Contents
Enumerations in Switch Statements . . . . . . . . . . . . . . . . . . 4-42
ix
Attributes for Class Members . . . . . . . . . . . . . . . . . . . . . . . . 5-2
Kinds of Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5-3
Constructing Objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5-3
Class Hierarchies . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5-3
x Contents
Value or Handle Class — Which to Use
6
Comparing Handle and Value Classes . . . . . . . . . . . . . . . . . . 6-2
Basic Difference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6-2
Why Select Handle or Value . . . . . . . . . . . . . . . . . . . . . . . . . 6-2
Behavior of MATLAB Built-In Classes . . . . . . . . . . . . . . . . . 6-3
Behavior of User-Defined Classes . . . . . . . . . . . . . . . . . . . . . 6-4
xi
Controlling the Number of Instances . . . . . . . . . . . . . . . . . . 6-30
Limiting Instances . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6-30
xii Contents
Access Methods for Dependent Properties . . . . . . . . . . . . . . 7-24
Set and Get Methods for Dependent Properties . . . . . . . . . . 7-24
Get Method for Dependent Property . . . . . . . . . . . . . . . . . . 7-25
When to Use Set Methods with Dependent Properties . . . . . 7-25
When to Use Private Set Access with Dependent Properties 7-26
xiii
Class Constructor Methods . . . . . . . . . . . . . . . . . . . . . . . . . . 8-15
Rules for Constructors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8-15
Related Information . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8-16
Initializing Objects In Constructor . . . . . . . . . . . . . . . . . . . 8-16
No Input Argument Constructor Requirement . . . . . . . . . . . 8-17
Constructing Subclasses . . . . . . . . . . . . . . . . . . . . . . . . . . . 8-18
Errors During Class Construction . . . . . . . . . . . . . . . . . . . . 8-20
Basic Structure of Constructor Methods . . . . . . . . . . . . . . . 8-21
xiv Contents
Object Arrays
9
Create Object Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9-2
Basic Knowledge . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9-2
Build Arrays in the Constructor . . . . . . . . . . . . . . . . . . . . . . 9-2
Referencing Property Values in Object Arrays . . . . . . . . . . . . 9-3
Related Information . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9-4
xv
Events — Sending and Responding to Messages
10
Learn to Use Events and Listeners . . . . . . . . . . . . . . . . . . . . 10-2
Why Use Events and Listeners . . . . . . . . . . . . . . . . . . . . . . 10-2
Events and Listeners Basics . . . . . . . . . . . . . . . . . . . . . . . . 10-2
Events and Listeners Syntax Overview . . . . . . . . . . . . . . . . 10-3
Class with Custom Event Data . . . . . . . . . . . . . . . . . . . . . . 10-5
Class to Observe Property Changes . . . . . . . . . . . . . . . . . . . 10-7
xvi Contents
Update Graphs Using Events and Listeners . . . . . . . . . . . . 10-36
Example Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10-36
Techniques Demonstrated in This Example . . . . . . . . . . . . 10-37
Summary of fcneval Class . . . . . . . . . . . . . . . . . . . . . . . . . 10-37
Summary of fcnview Class . . . . . . . . . . . . . . . . . . . . . . . . 10-38
Methods Inherited from Handle Class . . . . . . . . . . . . . . . . 10-40
Using the fcneval and fcnview Classes . . . . . . . . . . . . . . . 10-40
Implementing the UpdateGraph Event and Listener . . . . . 10-42
The PostSet Event Listener . . . . . . . . . . . . . . . . . . . . . . . . 10-46
Enabling and Disabling the Listeners . . . . . . . . . . . . . . . . 10-49
@fcneval/fcneval.m Class Code . . . . . . . . . . . . . . . . . . . . . 10-50
@fcnview/fcnview.m Class Code . . . . . . . . . . . . . . . . . . . . . 10-51
xvii
Modify Superclass Properties . . . . . . . . . . . . . . . . . . . . . . . 11-18
Allowed Superclass Property Modification . . . . . . . . . . . . . 11-18
Private Local Property Takes Precedence in Method . . . . . 11-18
xviii Contents
Behavior of Inherited Built-In Methods . . . . . . . . . . . . . . . 11-48
Subclass double . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11-48
Built-In Data Value Methods . . . . . . . . . . . . . . . . . . . . . . 11-49
Built-In Data Organization Methods . . . . . . . . . . . . . . . . . 11-50
Built-In Indexing Methods . . . . . . . . . . . . . . . . . . . . . . . . 11-51
Built-In Concatenation Methods . . . . . . . . . . . . . . . . . . . . 11-51
xix
Find Inherited Abstract Properties and Methods . . . . . . . . 11-83
Interfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11-84
Interfaces and Abstract Classes . . . . . . . . . . . . . . . . . . . . 11-84
An Interface for Classes Implementing Graphs . . . . . . . . . 11-84
xx Contents
A Typical saveobj and loadobj Pattern . . . . . . . . . . . . . 12-15
Regenerating from Object or struct . . . . . . . . . . . . . . . . . . 12-16
Related Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12-17
Enumerations
13
Defining Named Values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13-2
Kinds of Predefined Names . . . . . . . . . . . . . . . . . . . . . . . . . 13-2
xxi
Constructor Calling Sequence . . . . . . . . . . . . . . . . . . . . . . 13-10
Restrictions Applied to Enumeration Classes . . . . . . . . . . 13-12
Techniques for Defining Enumerations . . . . . . . . . . . . . . . 13-12
Constant Properties
14
Properties with Constant Values . . . . . . . . . . . . . . . . . . . . . . 14-2
Defining Named Constants . . . . . . . . . . . . . . . . . . . . . . . . . 14-2
Constant Property Assigned a Handle Object . . . . . . . . . . . 14-4
Constant Property Assigned Any Class Instance . . . . . . . . . 14-4
xxii Contents
Information from Class Metadata
15
Class Metadata . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15-2
What Is Class Metadata? . . . . . . . . . . . . . . . . . . . . . . . . . . 15-2
The meta Package . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15-2
Metaclass Objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15-3
xxiii
Object Converters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16-8
Why Implement a Converter . . . . . . . . . . . . . . . . . . . . . . . . 16-8
Converters for Package Classes . . . . . . . . . . . . . . . . . . . . . . 16-8
Converters and Subscripted Assignment . . . . . . . . . . . . . . . 16-9
xxiv Contents
Customizing Object Display
17
Custom Display Interface . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17-2
Default Object Display . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17-2
CustomDisplay Class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17-3
Methods for Customizing Object Display . . . . . . . . . . . . . . . 17-3
xxv
displayScalarObject Method Override . . . . . . . . . . . . . . . . 17-29
getPropertyGroups Override . . . . . . . . . . . . . . . . . . . . . . . 17-30
xxvi Contents
The DocAsset Display Method . . . . . . . . . . . . . . . . . . . . . . . 19-6
Designing a Class for Stock Assets . . . . . . . . . . . . . . . . . . . 19-7
DocStock Class Definition . . . . . . . . . . . . . . . . . . . . . . . . . . 19-7
Summary of the DocStock Class . . . . . . . . . . . . . . . . . . . . . 19-7
Designing a Class for Bond Assets . . . . . . . . . . . . . . . . . . 19-10
DocBond Class Definition . . . . . . . . . . . . . . . . . . . . . . . . . 19-10
Summary of the DocBond Class . . . . . . . . . . . . . . . . . . . . 19-10
Designing a Class for Savings Assets . . . . . . . . . . . . . . . . 19-14
DocSavings Class Definition . . . . . . . . . . . . . . . . . . . . . . . 19-14
Summary of the DocSavings Class . . . . . . . . . . . . . . . . . . 19-14
DocAsset Class Code Listing . . . . . . . . . . . . . . . . . . . . . . . 19-17
DocStock Class Code Listing . . . . . . . . . . . . . . . . . . . . . . . 19-17
DocBond Class Code Listing . . . . . . . . . . . . . . . . . . . . . . . 19-18
DocSavings Class Code Listing . . . . . . . . . . . . . . . . . . . . . 19-19
xxvii
1
Play video
1-2
Why Use Object-Oriented Design
The MATLAB language enables you to create programs using both procedural and object-
oriented techniques and to use objects and ordinary functions in your programs.
• 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-3
1 Using Object-Oriented Design in MATLAB
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 (an object of class double might have
a value of 5). The functions defined by the class (called methods) are what implement
object behaviors that are common to all objects of a class (you can add two doubles
regardless of their values).
The MATLAB language defines objects that are designed for use in any MATLAB code.
For example, consider the try/catch programming construct.
If the code executed in the try block generates an error, program control passes to the
code in the catch block. This behavior enables your program to provide special error
handling that is more appropriate to your particular application. However, you must
have enough information about the error to take the appropriate action.
The following try/catch blocks display the error message stored in an MException
object when a function (surf in this case) is called without the necessary arguments:
try
surf
catch ME
disp(ME.message)
end
Not enough input arguments.
In this code, ME is an object of the MException class, which is returned by the catch
statement to the function's workspace. Displaying the value of the object's message
property returns information about the error (the surf function requires input
arguments). However, this is not all the information available in the MException object.
You can list the public properties of an object with the properties function:
properties(ME)
1-4
Why Use Object-Oriented Design
identifier
message
cause
stack
class(ME.message)
ans =
char
shows that the value of the message property is an array of class char (a text string).
The stack property contains a MATLAB struct:
ME.stack
ans =
file: [1x90 char]
name: 'surf'
line: 50
You can simply treat the property reference, ME.stack as a structure and reference its
fields:
ME.stack.file
ans =
D:\myMATLAB\matlab\toolbox\matlab\graph3d\surf.m
The file field of the struct contained in the stack property is a character array:
class(ME.stack.file)
ans =
char
strcmp(ME.stack.name,'surf')
1-5
1 Using Object-Oriented Design in MATLAB
ans =
1
Object properties can contain any class of value and can even determine their value
dynamically. This provides more flexibility than a structure and is easier to investigate
than a cell array, which lacks fieldnames and requires indexing into various cells using
array dimensions.
You could write a function that generates a report from the data returned by
MException object properties. This function could become quite complicated because
it would have to be able to handle all possible errors. Perhaps you would use different
functions for different try/catch blocks in your program. If the data returned by the
error object needed to change, you would have to update the functions you have written
to use the new data.
Objects provide an advantage in that objects define their own operations. A requirement
of the MException object is that it can generate its own report. The methods that
implement an object's operations are part of the object definition (i.e., specified by the
class that defines the object). The object definition might be modified many times, but the
interface your program (and other programs) use does not change. Think of your program
as a client of the object, which isolates your code from the object's code.
To see what methods exist for MException objects, use the methods function:
methods(ME)
Static methods:
last
You can use these methods like any other MATLAB statement when there is an
MException object in the workspace. For example:
ME.getReport
ans =
Error using ==> surf
Not enough input arguments.
1-6
Why Use Object-Oriented Design
Objects often have methods that overload (redefined for the particular class of the object)
MATLAB functions (e.g., isequal, fieldnames, etc.). This enables you to use objects
just like other values. For example, MException objects have an isequal method.
This method enables you to compare these objects in the same way you would compare
variables containing doubles. If ME and ME2 are MException objects, you can compare
them with this statement:
isequal(ME,ME2)
However, what really happens in this case is MATLAB calls the MException isequal
method because you have passed MException objects to isequal.
Similarly, the eq method enables you to use the == operator with MException objects:
ME == ME2
Of course, objects should support only those methods that make sense. For example, it
would probably not make sense to multiply MException objects so the MException
class does not implement methods to do so.
Simple programming tasks are easily implemented as simple functions, but as the
magnitude and complexity of your tasks increase, functions become more complex and
difficult to manage.
As functions become too large, you might break them into smaller functions and pass
data from one to the other. However, as the number of functions becomes large, designing
and managing the data passed to functions becomes difficult and error prone. At this
point, you should consider moving your MATLAB programming tasks to object-oriented
designs.
Thinking in terms of things or objects is simpler and more natural for some problems.
You might think of the nouns in your problem statement as the objects you need to define
and the verbs as the operations you must perform.
1-7
1 Using Object-Oriented Design in MATLAB
All of these institutions belong in the general class of lending institutions, so all objects
might provide a loan operation and have a Rate property that stores the current
interest rate.
Identify Differences
You must also consider how each institution differs. A mortgage company might provide
only home mortgage loans. Therefore, the loan operation might need be specialized
for mortgage companies to provide fixRateLoan and varRateLoan methods to
accommodate two loan types.
Consider Interactions
Institutions can interact, as well. For example, a mortgage company might sell a
mortgage to a bank. To support this activity, the mortgage company object would
support a sellMortgage operation and the bank object would support a buyMortgage
operation.
You might also define a loan object, which would represent a particular loan. It might
need Amount, Rate, and Lender properties. When the loan is sold to another institution,
the Lender property could be changed, but all other information is neatly packaged
within the loan object.
Add Only What Is Necessary
It is likely that these institutions engage in many activities that are not of interest to
your application. During the design phase, you need to determine what operations and
data an object needs to contain based on your problem definition.
Managing Data
Objects encapsulate the model of what the object represents. If the object represents a
kind of lending institution, all the behaviors of lending institutions that are necessary for
your application are contained by this object. This approach simplifies the management
of data that is necessary in a typical procedural program.
1-8
Why Use Object-Oriented Design
In the simplest sense, objects are data structures that encapsulate some internal state,
which you access via its methods. When you invoke a method, it is the object that
determines exactly what code to execute. In fact, two objects of the same class might
execute different code paths for the same method invocation because their internal state
is different. The internal workings of the object need not be of concern to your program —
you simply use the interface the object provides.
Hiding the internal state from general access leads to more robust code. If a loan
object's Lender property can be changed only by the object's newLender method, then
inadvertent access is less likely than if the loan data were stored in a cell array where an
indexing assignment statement could damage the data.
Objects provide a number of useful features not available from structures and cell arrays.
For example, objects provide the ability to:
• Constrain the data assigned to any given property by executing a function to test
values whenever an assignment is made
• Calculate the value of a property only when it is queried and thereby avoid storing
data that might be dependent on the state of other data
• Broadcast notices when any property value is queried or changed, to which any
number of listeners can respond by executing functions
• Restrict access to properties and methods
Reducing Redundancy
1 Check inputs
2 Perform computation on the first input argument
3 Transform the result of step 2 based on the second input argument
4 Check validity of outputs and return values
This simple procedure is easily implemented as an ordinary function. But now suppose
you need to use this procedure again somewhere in your application, except that step
2 must perform a different computation. You could simply copy and paste the first
implementation, and then rewrite step 2. Or you could create a function that accepted an
1-9
1 Using Object-Oriented Design in MATLAB
option indicating which computation to make, and so on. However, these options lead to
more and more complicated code.
An object-oriented design could result in a simpler solution by factoring out the common
code into what is called a base class. The base class would define the algorithm used and
implement whatever is common 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, it is inherited by the various classes
you derive from the base class. This 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 is often called an interface class.
Incorporating this kind of class into your program design enables you to:
For example, suppose you are creating an object to return information about errors that
occur during the execution of specific blocks of code. There might be functions that return
1-10
Why Use Object-Oriented Design
special types of information that you want to include in an error report only when the
error is generated by these functions.
The interface class, from which all error objects are derived, could specify that all error
objects must support a getReport method, but not specify how to implement that
method. The class of error object created for the functions returning special information
could implement its version of the getReport method to handle the different data.
The requirement defined by the interface class is that all error objects be able to display
an error report. All programs that use this feature can rely on it being implement in a
consistent way.
All of the classes derived from the interface class can create a method called getReport
without any name conflicts because it is the class of the object that determines which
getReport is called.
Reducing Complexity
Objects reduce complexity by reducing what you need to know to use a component or
system. This happens in a couple of ways:
n1 n2 n3
Properties Properties Properties
Next Next Next
Prev Prev Prev
n2.Prev n2 n2.Next
To add a new node to the list, it is necessary to disconnect the existing nodes in the list,
insert the new node, and reconnect the nodes appropriately. Here are the basic steps:
1-11
1 Using Object-Oriented Design in MATLAB
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
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 new
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
the application is less likely to generate errors in its own implementation of the process.
1-12
Why Use Object-Oriented Design
Fostering Modularity
As you decompose a system into objects (car –> engine –> fuel system –> oxygen sensor),
you form modules around natural boundaries. These objects provide interfaces by which
they interact with other modules (which might be other objects or functions). Often the
data and operations behind the interface are hidden from other modules to segregate
implementation from interface.
• Public — Any code can access this particular property or call this method.
• Protected — Only the object's own methods and those of the object's whose class has
been 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.
Suppose your application requires a number of dialog windows to interact with users.
By defining a class containing all the common aspects of the dialog windows, and then
deriving the specific dialog classes from this base class, you can:
Learning More
See “Classes in the MATLAB Language” on page 3-2 to learn more about writing
object-oriented MATLAB programs.
1-13
1 Using Object-Oriented Design in MATLAB
1-14
Class Diagram Notation
BankAccount
Object Properties
AccountNumber
AccountBalance
Employee
Class Properties
Name
Address
Asset
is_a
Stock
FileReader FileID
(aggregation)
has_a
Car Tire
(composition)
1-15
1 Using Object-Oriented Design in MATLAB
Handle Objects
In this section...
“What Is a Handle Object?” on page 1-16
“Copying Handles” on page 1-16
“Modifying Handle Objects in Functions” on page 1-17
“How to Determine If an Object Is a Handle” on page 1-19
“Deleted Handle Objects” on page 1-19
Handle objects enable more than one variable to refer to the same information. Handle-
object behavior affects what happens when you copy handle objects and when you pass
them to functions.
Copying Handles
All copies of a handle object variable refer to the same underlying object. This 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.
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);
1-16
Handle Objects
play(gongSound)
Suppose 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
sr =
8192
gongSound.SampleRate = sr*2;
ans =
16384
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)
1-17
1 Using Object-Oriented Design in MATLAB
var = var + 1;
end
x = 12;
myFunc(x)
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)
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:
function modifySampleRate(audioObj,sr)
audioObj.SampleRate = sr;
end
1-18
Handle Objects
ans =
8192
modifySampleRate(gongSound,16384)
gongSound.SampleRate
ans =
16384
The modifySampleRate function does not need to return a modified gongSound object
because audioplayer objects are handle objects.
ans =
1-19
1 Using Object-Oriented Design in MATLAB
longer exists. Calling delete on the object removes the object, but does not clear handle
variables.
The output argument, gongSound, is a handle variable. Calling delete deletes the
object along with the audio source information it contains:
delete(gongSound)
gongSound =
Fs 1x1 8 double
gongSound 1x1 104 audioplayer
y 42028x1 336224 double
ans =
1-20
Handle Objects
gongSound.SampleRate
clear gongSound
whos
Fs 1x1 8 double
y 42028x1 336224 double
1-21
2
Basic Example
2 Basic Example
A Simple Class
In this section...
“Define a Simple Class” on page 2-2
“Create an Object” on page 2-3
“Access Properties” on page 2-3
“Call Methods” on page 2-3
“Add a Constructor” on page 2-4
“Vectorize Methods” on page 2-5
“Overloading Functions” on page 2-6
“BasicClass Code Listing” on page 2-6
• 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
A Simple Class
To use the class, create an object of the class, assign the class data, and call operations on
that data.
Related Information
Create an Object
Create an object of the class using the class name:
a = BasicClass
a =
Value: []
Access Properties
Assign a value to the OriginalValue property using the object variable and a dot before
the property name:
a.Value = pi/3;
ans =
1.0472
Related Information
Call Methods
Call the roundOff method on object a:
2-3
2 Basic Example
a = BasicClass(pi/3);
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.
Related Information
Add a Constructor
Classes can define a special method to create objects, called a constructor. Constructor
methods enable you 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
A Simple Class
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')
Related Information
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 Value property reference in brackets.
[obj.Value] + 2
ans =
2-5
2 Basic Example
Overloading 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 you want
to add two BasicClass object. 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
For information on overloading functions, see “Overload Functions for Your Class”.
classdef BasicClass
properties
Value
end
methods
function obj = BasicClass(val)
2-6
A Simple Class
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
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 class that comprise the basic types used by the language.
For more information, see “Fundamental MATLAB Classes”.
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
Classes in the MATLAB Language
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 “Class Design for Polynomials” on page 18-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.
These are general descriptions of these components and concepts. This documentation
describes all of these components in detail.
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
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 defined by the superclass. A subclass is more specific than its
superclass and might add new properties, methods, and events to those 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
Positive numbers. All three sets are subsets of Real numbers, 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
Classes in the MATLAB Language
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 very 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 of 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.
Related Examples
• “A Simple Class”
• “Developing Classes — Typical Workflow” on page 3-8
3-6
Classes in the MATLAB Language
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 that are designed to listen for these notices. In this example, a simplified
version of an account manager program performs this task.
3-8
Developing Classes — Typical Workflow
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 string 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
if BA.AccountBalance > 0
BA.AccountStatus = 'open';
end
end
function withdraw(BA,amt)
if (strcmp(BA.AccountStatus,'closed')&& BA.AccountBalance <= 0)
disp(['Account ',num2str(BA.AccountNumber),' has been closed.'])
return
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
3-14
Developing Classes — Typical Workflow
The AccountManager class stores no data so it does not need properties. The
BankAccount object stores the handle of the listener object.
Class Components
• 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
AccountBalance property.
3-16
Developing Classes — Typical Workflow
end
function lh = addAccount(BA)
lh = addlistener(BA, 'InsufficientFunds', ...
@(src, ~)AccountManager.assignStatus(src));
end
end
end
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
-------------------------
3-17
3 MATLAB Classes Overview
The $600 withdrawal triggered the InsufficientsFunds event. The current criteria
defined by the AccountManager class results in a status of overdrawn.
-------------------------
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
Class to Manage Writable Files
Flexible Workflow
The MATLAB language does not require you to define classes for all the code you write.
You can use objects along with ordinary functions. This section illustrates the use of an
object that implements the basic task of writing text to a file.
• Hide private data — The caller does not need to manage the file identifier.
• Ensure only one file identifier is in use at any time — Copies of handle objects
reference the same file identifier as the original.
• Provide automatic file closing when the object is deleted — the object's delete
method takes care of cleanup without needing to be called explicitly.
The Filewriter class derives from the handle class. Therefore, a Filewriter object
is a handle object. All copies of handle objects reference the same internal data. There is
only one file identifier in use, even if you make copies of the object.
3-19
3 MATLAB Classes Overview
Also, handle classes define a delete method, which is called automatically when
MATLAB destroys a handle object. This example overrides the delete method. This
method closes the file before deleting the object and losing file identifier.
methods
function obj = Filewriter(filename)
obj.FileID = fopen(filename,'a');
end
function writeToFile(obj,text_str)
fprintf(obj.FileID,'%s\n',text_str);
end
function delete(obj)
fclose(obj.FileID);
end
end
end
“Property Attributes”
3-20
Class to Manage Writable Files
fw = Filewriter('MyNewClass.m');
writeToFile(fw,'classdef < handle')
clear fw
type MyNewClass
Filewriter objects provide functionality that you can use from functions and
within other classes. You can create an ordinary function that uses this object, as the
writeClassFile function does below.
This example creates only one simple class template, but another version could accept a
cell array of attribute name/value pairs, method names, and so on.
function writeClassFile(classname,superclass)
3-21
3 MATLAB Classes Overview
fw = Filewriter([classname '.m']);
if nargin > 1
writeToFile(fw,['classdef ' classname ' < ' superclass])
else
writeToFile(fw,['classdef ' classname])
end
writeToFile(fw,' properties ')
writeToFile(fw,' ')
writeToFile(fw,' end')
writeToFile(fw,' ')
writeToFile(fw,' methods ')
writeToFile(fw,' function')
writeToFile(fw,' ')
writeToFile(fw,' end')
writeToFile(fw,' end')
writeToFile(fw,'end')
end
To create a class file template, call writeClassFile with the name of the new class and
its superclass. Use the type command to display the contents of the file:
writeClassFile('MyNewClass','handle')
edit MyNewClass
3-22
Class to Manage Writable Files
See Also
fclose | fopen | fprintf
More About
• “Handle Class Destructor”
3-23
3 MATLAB Classes Overview
In this section...
“Objects As Data Structures” on page 3-24
“Structure of the Data” on page 3-24
“The TensileData Class” on page 3-25
“Create an Instance and Assign Data” on page 3-25
“Restrict Properties to Specific Values” on page 3-26
“Simplifying the Interface with a Constructor” on page 3-27
“Calculate Data on Demand” on page 3-28
“Displaying TensileData Objects” on page 3-29
“Method to Plot Stress vs. Strain” on page 3-30
“TensileData Class Synopsis” on page 3-31
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 is an over simplification of the process, it
suffices for this example.
3-24
Class to Represent Structured Data
Data Description
Material Character string 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-25
3 MATLAB Classes Overview
Treat the TensileData object (td in the statements above) 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 = ...
would simply add a new field to a structure, but returns an error when td is an
instance of the TensileData class.
• A class is easy to reuse. Once you have defined the class, you can easily extend it with
subclasses that add new properties.
• A class is easy to identify. A class has a name so that you can identify objects with the
whos and class functions and the Workspace browser. The class name makes it easy
to refer to records with a meaningful name.
• A class can validate individual field values when assigned, including class or value.
• A class can restrict access to fields, for example, allowing a particular field to be read,
but not changed.
The Material property set method restricts the assignment of the property to one of the
following strings: aluminum, stainless steel, or carbon steel.
classdef TensileData
properties
Material
SampleNumber
Stress
Strain
3-26
Class to Represent Structured Data
Modulus
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;
3-27
3 MATLAB Classes Overview
td.SampleNumber = samplenum;
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)
3-28
Class to Represent Structured Data
Modulus
end
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
3-29
3 MATLAB Classes Overview
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.
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-30
Class to Represent Structured Data
3-31
3 MATLAB Classes Overview
3-32
Class to Represent Structured Data
3-33
3 MATLAB Classes Overview
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-34
Class to Represent Structured Data
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
More About
• “Class Syntax Fundamentals”
3-35
3 MATLAB Classes Overview
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-36
Class to Implement Linked Lists
• Prev — Contains the handle of the previous node in the list (SetAccess =
private)
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.
Build these nodes into a doubly linked list using the class methods designed for this
purpose:
n2.insertAfter(n1) % Insert n2 after n1
n3.insertAfter(n2) % Insert n3 after n2
3-37
3 MATLAB Classes Overview
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-38
Class to Implement Linked Lists
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
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.
This means 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 “Comparing Handle and Value Classes” on
page 6-2.
3-39
3 MATLAB Classes Overview
3-40
Class to Implement Linked Lists
3-41
3 MATLAB Classes Overview
end
methods
function node = dlnode(Data)
% Construct a dlnode object
if nargin > 0
node.Data = Data;
end
end
function removeNode(node)
% Remove a node from a linked list.
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;
3-42
Class to Implement Linked Lists
end
node.Next = dlnode.empty;
node.Prev = dlnode.empty;
end
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
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.
properties
3-43
3 MATLAB Classes Overview
Data
end
properties(SetAccess = private)
Next = dlnode.empty;
Prev = dlnode.empty;
end
To create a node object, specify the node's data as an argument to the constructor:
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.
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 you want to insert a new node, nnew, after an existing node, n1, in
a list containing n1—n2—n3.
3-44
Class to Implement Linked Lists
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;
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.
3-45
3 MATLAB Classes Overview
Calling removeNode ensures 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
n2.removeNode;
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
3-46
Class to Implement Linked Lists
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 (i.e., n2 is not connected):
n2.Next = dlnode.empty;
n2.Prev = dlnode.empty;
Suppose you create a list with ten 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)
head.Next.Next
ans =
Data: 4
Next: [1x1 dlnode]
Prev: [1x1 dlnode]
head.Next
ans =
Data: 2
Next: [1x1 dlnode]
Prev: [1x1 dlnode]
3-47
3 MATLAB Classes Overview
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.
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)
3-48
Class to Implement Linked Lists
For example, suppose you create a list with a large number of 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]
3-49
3 MATLAB Classes Overview
The only nodes that have not been deleted by MATLAB are those for which there exists
an explicit reference. In this case, those references are head and nextNode:
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.
3-50
Class to Implement Linked Lists
To delete a single node from the list, use the removeNode method.
Rather than copying the code used to implement the dlnode class, and then expanding
upon it, you can derive a new class from dlnode (i.e., 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.
3-51
3 MATLAB Classes Overview
Use the NamedNode class like the dlnode class, except that you specify a name for each
node object. For example:
n(1) = NamedNode('First Node',100);
n(2) = NamedNode('Second Node',200);
n(3) = NamedNode('Third Node',300);
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-52
Class to Implement Linked Lists
More About
• “The Handle Superclass”
3-53
3 MATLAB Classes Overview
The class block is the code that starts with the classdef key word and terminates with
the end key word. The following example illustrated a simple class definition that uses:
• Handle class
• Property set and get functions
• Use of a delete method for the handle object
• Static method syntax
methods
function obj = topo(fnc,limits)
% Constructor assigns property values
obj.FofXY = fnc;
obj.Lm = limits;
end % topo
function set.Lm(obj,lim)
% Lm property set function
if ~(lim(1) < lim(2))
error('Limits must be monotonically increasing')
else
3-54
Class for Graphing Functions
obj.Lm = lim;
end
end % set.Lm
function surflight(obj)
% Graph function as surface
obj.FigHandle = figure;
surfc(obj.Data.X,obj.Data.Y,obj.Data.Matrix,...
'FaceColor',[.8 .8 0],'EdgeColor',[0 .2 0],...
'FaceLighting','gouraud');
camlight left; material shiny; grid off
colormap copper
end % surflight method
function delete(obj)
% Delete the figure
h = obj.FigHandle;
if ishandle(h)
delete(h);
else
return
end
end % delete
end % methods
3-55
3 MATLAB Classes Overview
To create an instance of the class, passing a function handle and a vector of limits to the
constructor. The easiest way to create a function handle for these functions is to use an
anonymous function:
tobj = topo(@(x,y) x.*exp(-x.^2-y.^2),[-2 2]);
The class surflight method uses the object to create a graph of the function. The actual
data required to create the graph is not stored. When the surflight method accesses
the Data property, the property's get function performs the evaluation and returns the
data in the Data property structure fields. This data is then plotted. The advantage of
not storing the data is the reduced size of the object.
3-56
Class for Graphing Functions
Now suppose you change the FofXY property so that it contains a function handle that
points to another function:
tobj.FofXY = @(x,y) y.*exp(-x.^2-y.^2);
surflight(a)
Because a is a copy of the handle object tobj, changes to the data referenced by tobj
also change the data referenced by a.
If topo were a value class, the objects tobj and a would not share data; each would have
its own copy of the property values.
3-57
4
@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
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.
4-2
Class Files and Folders
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.
4-3
4 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
More About
• “Class and Path Folders” on page 5-14
• “Packages Create Namespaces” on page 5-19
• “Methods In Separate Files” on page 4-20
4-4
Class Components
Class Components
In this section...
“Class Building Blocks” on page 4-5
“Class Definition Block” on page 4-5
“Properties Block” on page 4-6
“Methods Block” on page 4-6
“Events Block” on page 4-7
“Enumeration Block” on page 4-8
“Related Information” on page 4-8
4-5
4 Class Definition—Syntax Reference
...
end
For example, this classdef defines a class called MyClass that sublcasses the handle
class, but cannot be used to derive subclasses:
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 (Access = 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.
4-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
4-7
4 Class Definition—Syntax Reference
Enumeration Block
The enumeration block contains the enumeration members defined by the class. The
enumeration block starts with the enumeration keyword and terminates with the end
keyword.
classdef ClassName < SuperClass
enumeration
EnumerationMember
end
...
end
For example, this class defines two enumeration members that represent logical false
and true:
Related Information
“Class and Path Folders”
4-8
Classdef Block
Classdef Block
In this section...
“Specifying Attributes and Superclasses” on page 4-9
“Assigning Class Attributes” on page 4-9
“Specifying Superclasses” on page 4-10
• Class attributes
• Superclasses
The classdef block contains the properties, methods, and events subblocks.
classdef ClassName
...
end
For example, the TextString class specifies that it cannot be used to derive subclasses:
4-9
4 Class Definition—Syntax Reference
For a list of attributes and a discussion of the behaviors they control, see “Class
Attributes” on page 5-5 .
Specifying Superclasses
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:
4-10
Properties
Properties
In this section...
“What You Can Define” on page 4-11
“Initializing Property Values” on page 4-11
“Defining Default Values” on page 4-12
“Assigning Property Values from the Constructor” on page 4-12
“Initializing Properties to Unique Values” on page 4-13
“Property Attributes” on page 4-13
“Property Access Methods” on page 4-14
“Referencing Object Properties Using Variables” on page 4-15
Note: Always use case sensitive property names in your MATLAB code. Properties
cannot have the same name as the class.
• 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.
4-11
4 Class Definition—Syntax Reference
classdef ClassName
properties
Prop1 % No default value assigned
Prop2 = 'some text';
Prop3 = sin(pi/12); % Expression returns default value
end
end
MATLAB sets property values not specified in the class definition to empty ([]).
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 a class instance.
Related Information
For more information on the evaluation of expressions that you assign as property
default values, see “When MATLAB Evaluates Expressions” on page 5-10 .
classdef MyClass
properties
Prop1
end
methods
function obj = MyClass(intval)
obj.Prop1 = intval;
end
end
end
4-12
Properties
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 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.
Related Information
See “Referencing the Object in a Constructor” on page 8-17 for more information on
constructor methods.
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:
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
4-13
4 Class Definition—Syntax Reference
This restriction exists because the class defines these properties in a properties block
with the Access attribute set to private.
Property Attributes
end
MATLAB does not call the property set access method when assigning the default value
specified in the property's definition block.
For example, the set.Password method tests the length of the character array assigned
to a property named Password. If there are less than seven characters in the value
assigned to the property, MATLAB returns the error. Otherwise, MATLAB assigns the
specified value to the property.
function obj = set.Password(obj,pw)
if numel(pw) < 7
error('Password must have at least 7 characters')
else
obj.Password = pw;
end
Related Information
4-14
Properties
PropName = 'KeyType';
function o = getPropValue(obj,PropName)
o = obj.(PropName);
end
More About
• “How to Use Properties”
4-15
4 Class Definition—Syntax Reference
4-16
Methods and Functions
method. The left most argument does not need to be the class object, and the argument
list can have multiple objects.
Note: Always use case sensitive method names in your MATLAB code.
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
r = MyClass.staticMethod(arg1);
4-17
4 Class Definition—Syntax Reference
Related Information
For information on methods that do not require objects of their class, see “Static
Methods” on page 8-23.
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
function myUtilityFcn
4-18
Methods and Functions
...
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, which are inherited by
all classes deriving from handle.
More About
• “Packages Create Namespaces”
• “Class Operator Implementations”
4-19
4 Class Definition—Syntax Reference
In this section...
“Methods In Class Folders” on page 4-20
“Define Method in Function File” on page 4-21
“Specify Method Attributes in classdef File” on page 4-21
“Methods That You Must Define In the classdef File” on page 4-22
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.
4-20
Methods In Separate Files
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
4-21
4 Class Definition—Syntax Reference
If you specify nondefault attributes for a method, include the method signature in the file
with the classdef block
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
4-22
Methods In Separate Files
• Delete method
• 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
• Property set and get access methods
Related Information
Related Examples
• “Update Graphs Using Events and Listeners”
4-23
4 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
Related Examples
• “Learn to Use Events and Listeners”
4-24
Events and Listeners
4-25
4 Class Definition—Syntax Reference
Attribute Specification
In this section...
“Attribute Syntax” on page 4-26
“Attribute Descriptions” on page 4-26
“Attribute Values” on page 4-27
“Simpler Syntax for true/false Attributes” on page 4-27
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:
4-26
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
methods (Static)
...
end
4-27
4 Class Definition—Syntax Reference
end
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.
4-28
Call Superclass Methods on Subclass Objects
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);
...
end
4-29
4 Class Definition—Syntax Reference
end
end
superMethod@MySuperClass(obj)
Superclass name
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:
Related Information
For more information on when to call superclass methods, see .“Modify Superclass
Methods”
4-30
Representative Class Code
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
function plot(obj)
4-31
4 Class Definition—Syntax Reference
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
4-32
Representative Class Code
ca.Area
ans =
164.2202
4-33
4 Class Definition—Syntax Reference
Define the Radius property within the properties-end keywords. Use default
attributes:
properties
Radius
end
Define the P property as Constant (“Properties with Constant Values”). Call the pi
function only once when class is initialized.
properties (Constant)
P = pi;
end
Define the Area property as Dependent because its value depends on the Radius
property.
properties (Dependent)
Area
end
methods % Begin defining methods
The CircleArea class constructor method has the same name as the class and
accepts the value of the circle radius as an argument. This method also allows no input
arguments. (“Class Constructor Methods”)
function obj = CircleArea(r)
if nargin > 0
obj.Radius = r;
else
obj.Radius = 0;
end
end
Because the Area property is Dependent, it does not store its value. The get.Area
method calculates the value of the Area property whenever it is queried. (“Access
Methods for Dependent Properties”)
function val = get.Area(obj)
val = obj.P*obj.Radius^2;
end
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”.
4-34
Representative Class Code
4-35
4 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;
4-36
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.
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:
function EmployeeName = someMethod(obj)
EmployeeName = EmployeeName; % Forgot to include obj.
end
4-37
4 Class Definition—Syntax Reference
Note: You do not need to define eq methods for enumeration classes. See “Enumerations
in Switch Statements” on page 4-42.
All classes derived from the handle class inherit an eq method. The expression,
h1 == h2
4-38
Objects In Switch Statements
end
end
end
h1 = BasicHandle('Handle Object');
h2 = h1;
switch h1
case h2
disp('h2 is selected')
otherwise
disp('h2 not selected')
end
h2 is selected
The switch statements work only with scalar objects. For example:
switch h1
case h2
disp('h2 is selected')
otherwise
disp('h2 not selected')
end
In this case, h1 is not scalar. Use isscalar to determine if an object is scalar before
entering a switch statement.
4-39
4 Class Definition—Syntax Reference
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
Implementation of eq
Here is a class that implements an eq method. Ensure your implementation contains
appropriate error checking for the intended use.
classdef SwitchOnVer
properties
Version
end
methods
function obj = SwitchOnVer(ver)
if nargin > 0
4-40
Objects In Switch Statements
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
ret(kk) = true;
else
ret(kk) = false;
end
end
end
end
end
end
4-41
4 Class Definition—Syntax Reference
ov1 = SwitchOnVer(1.0);
ov2 = SwitchOnVer(2.0);
ov3 = SwitchOnVer(3.0);
...
...
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 character string with the name of the current day.
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
4-42
Objects In Switch Statements
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
WeeklyPlanner.todaySchedule
Enumeration classes that derived from built-in types inherit the superclass eq method.
For example, the FlowRate class derives from int32:
The switchEnum function switches on the input argument, which can be a FlowRate
enumeration value.
function switchEnum(inpt)
switch inpt
case 10
disp('Flow = 10 cfm')
case 50
disp('Flow = 50 cfm')
case 100
disp('Flow = 100 cfm')
end
end
4-43
4 Class Definition—Syntax Reference
switchEnum(FlowRate.Medium)
Flow = 50 cfm
4-44
Operations on Objects
Operations on Objects
In this section...
“Object Operations” on page 4-45
“Help on Objects” on page 4-46
“Functions to Test Objects” on page 4-48
“Functions to Query Class Components” on page 4-48
Object Operations
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)
4-45
4 Class Definition—Syntax Reference
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);
4-46
Operations on Objects
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 thechorus 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)
4-47
4 Class Definition—Syntax Reference
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.
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.
4-48
Using the 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
edit +PackFld1/+PackFld2/myclass
To refer to a function defined in its own file inside of a class folder, use:
edit +PackFld1/+PackFld2/@myclass/myMethod
For debugging, dbstop accepts any of the file specifications used by the edit command.
See “Automatic Updates for Modified Classes” on page 4-50 for information about
clearing class.
4-49
4 Class Definition—Syntax Reference
MATLAB allows only one definition for a class to exist at any time. Therefore, all existing
objects of a class are updated automatically to conform to the new class definition. You do
not need to call clear classes to remove existing objects when changing their defining
class.
Note: Using an editor other than the MATLAB editor can result in delays to automatic
updating.
4-50
Automatic Updates for Modified Classes
Suppose you create an instance of a concrete class, and then edit the class definition to
make the class abstract.
>> a = MyClass;
% Edit MyClass to make it Abstract
>> a
a =
The object display provides information on the specific reason that the objects are not
updated.
a =
This array was created with a previous version of the MyClass class. MATLAB is unable t
The new class is abstract which means objects must now belong to a concrete subclass.
Note: MATLAB does not update meta-class instances when you change the definition of a
class. You need to retrieve new meta-class data after updating a class definition.
4-51
4 Class Definition—Syntax Reference
objects using the removed member have the removed member replaced with the
default member of the enumeration.
• Enumeration block removed — Enumeration members are removed from all existing
objects.
• Superclass definition changed — Changes applied to all subclasses of that superclass.
• Superclass added or removed — Change of superclass applied to all existing objects.
• Calling the class function on an out of date object does not cause an update.
• Assigning an out of date object to a variable does not cause an update.
• Calling a method that does not access class data does not cause an update.
The Workspace browser does not display changes to an object class (for example, objects
changed to matlab.lang.ObjectUpdateFailure) until after the update has been
triggered.
Objects do not update until referenced in a way that exposes the change, such as
invoking the object display. Updates do not occur incrementally. Updates conform to the
latest version of the class.
4-52
Automatic Updates for Modified Classes
• Removing or renaming properties can lose the data held in the property. For example,
if a property holds the only reference to another object and is removed from a class,
the object is deleted because there are no references to it.
• Removing a class from a heterogeneous class hierarchy can result in invalid
heterogeneous array elements. In this case, the default object for the heterogeneous
hierarchy replaces these array elements.
4-53
4 Class Definition—Syntax Reference
4-54
Automatic Updates for Modified Classes
4-55
4 Class Definition—Syntax Reference
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
function 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.
4-56
Compatibility with Previous Versions
Compare the following two Stock constructor methods. The Stock class is a subclass of
the Asset class, which requires arguments passed to its constructor.
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
4-57
4 Class Definition—Syntax Reference
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.
4-58
Comparing MATLAB with Other OO Languages
In this section...
“Some Differences from C++ and Java Code” on page 4-59
“Modifying Objects” on page 4-60
“Common Object-Oriented Techniques” on page 4-64
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 string 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 7-14 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 7-7 for a full list of
property attributes.
No Implicit Parameters
4-59
4 Class Definition—Syntax Reference
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.
Modifying Objects
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.
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.
4-60
Comparing MATLAB with Other OO Languages
However, MATLAB supports two kinds of classes that behave differently when copied:
See “Comparing Handle and Value Classes” on page 6-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:
function y = g(x)
x.Color = 'blue';
y = x;
end
4-61
4 Class Definition—Syntax Reference
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.
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:
classdef SimpleHandleClass < handle
properties
Color
end
methods
function obj = SimpleHandleClass(c)
if nargin > 0
obj.Color = c;
end
end
end
4-62
Comparing MATLAB with Other OO Languages
end
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
ans =
yellow
The function g modified the object referred to by the input argument (obj) and returned
a handle to that object in y.
MATLAB Passes Handles by Value
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)
4-63
4 Class Definition—Syntax Reference
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.
4-64
Comparing MATLAB with Other OO Languages
4-65
5
User-Defined Classes
In this section...
“What is a Class Definition” on page 5-2
“Attributes for Class Members” on page 5-2
“Kinds of Classes” on page 5-3
“Constructing Objects” on page 5-3
“Class Hierarchies” on page 5-3
MATLAB classes are defined in code blocks, with sub-blocks delineating the definitions
of various class members. See “classdef Syntax” on page 5-4 for details on the
classdef block.
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
15-2.
5-2
User-Defined Classes
Kinds of Classes
There are two kinds of MATLAB classes—handle and value classes.
• Handle classes create objects that reference the data contained. Copies refer to the
same data.
• Value classes make copies of the data whenever the object is copied or passed to a
function. MATLAB numeric types are value classes.
See “Comparing Handle and Value Classes” on page 6-2 for a more complete
discussion.
Constructing Objects
For information on class constructors, see “Class Constructor Methods” on page 8-15
For information on creating arrays of objects, see “Create Object Arrays” on page 9-2
Class Hierarchies
For more information on how to define class hierarchies, see “Hierarchies of Classes —
Concepts”.
5-3
5 Defining and Organizing Classes
Class Definition
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 key word.
...
end
classdef block
Related Examples
• “A Simple Class”
• “Developing Classes — Typical Workflow” on page 3-8
• “Class to Represent Structured Data” on page 3-24
5-4
Class Attributes
Class Attributes
In this section...
“Specifying Class Attributes” on page 5-5
“Specifying Attributes” on page 5-6
Class Attributes
5-5
5 Defining and Organizing Classes
(default =
false)
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. This means that, for example, you might use multiple
5-6
Class Attributes
properties definition blocks so you can apply different attribute setting to different
properties.
Class attributes are not inherited, so superclass attributes do not affect subclasses.
Attribute Syntax
More About
• “Expressions in Attribute Specifications” on page 5-9
5-7
5 Defining and Organizing Classes
Basic Knowledge
The material presented in this section builds on an understanding of the following
information:
MATLAB does not call property set methods when assigning the result of default
value expressions to properties. (See “Property Access Methods” on page 7-14 for
information about these special methods.)
5-8
Expressions in Class Definitions
Class definitions specify attribute values using an expression that assigns the desired
value to the named attribute. For example, this assignment makes MyClass sealed
(cannot be subclassed).
It is possible to use a MATLAB expression on the right side of the equals sign (=) as
long as it evaluates to logical true or false. However, this expression cannot use
any definitions from the class definition file, including any constant properties, static
methods, and local functions.
While it is possible to use conditional expressions to specify attribute values, doing so can
cause the class definition to change based on external conditions.
See “Attribute Specification” on page 4-26 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, Myclass defines a constant
property (Deg2Rad) and uses it in an expression that defines the default value of another
property (PropA). The default value expression also uses a static method (getAngle)
defined by the class:
classdef MyClass
properties (Constant)
Deg2Rad = pi/180;
end
properties
PropA = sin(Deg2Rad*MyClass.getAngle([1 0],[0 1]));
end
...
methods (Static)
function r = getAngle(vx,vy)
...
5-9
5 Defining and Organizing Classes
end
end
end
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 reevaluation.
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 4-50)
5-10
Expressions in Class Definitions
classdef ContClass
properties
TimeProp = datestr(now); % Assign current date and time
end
end
classdef ClassExp
properties
ObjProp = ContClass;
end
end
MATLAB creates an instance of the ContClass class when the ClassExp class is first
used. 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
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 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
5-11
5 Defining and Organizing Classes
ans =
08-Oct-2003 17:16:08
Now consider the difference in behavior if the contained object is a handle object:
classdef ContClass < handle
properties
TimeProp = datestr(now);
end
end
Creating two instances of the ClassExp class shows that MATLAB created an object
when it initialized the ContClass and used a copy of the object handle for each instance
of the ClassExp class. This means 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:
b = ClassExp;
b.ObjProp.TimeProp
ans =
08-Oct-2003 17:46:01
ans =
08-Oct-2003 17:47:34
5-12
Expressions in Class Definitions
Because 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
datestr | now
More About
• “Comparing Handle and Value Classes” on page 6-2
5-13
5 Defining and Organizing Classes
• Path folders — Folder name does not use an @ character and is itself on the MATLAB
path. Use this type of folder when you want multiple classes in one folder.
• Class folders — 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.
Path Folders
You can locate class definition files in folders that are on the MATLAB path. These
classes are visible on the path like any ordinary function. Class definitions placed in path
folders behave like any ordinary function with respect to precedence—the first occurrence
of a name on the MATLAB path takes precedence over all subsequent occurrences.
The name of the file must match the name of the class, as specified with the classdef
key word. 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 (for example, MyClass1.m, MyClass2.m, and so on).
See the path function for information about the MATLAB path.
Class Folders
A class folder must be contained by a path folder, but is not itself on the MATLAB path.
Place the class definition file inside the class folder, which can also contain separate
5-14
Class and Path Folders
method files. The class definition file must have the same name as the class folder
(without the @ character) and the class definition (beginning with the classdef key
word) must appear in the file before any other code (white space and comments do not
constitute code).
Define only one class per folder. All files must have a .m extension (for example,
@MyClass/MyClass.m, @MyClass/myMethod.m, and so on).
You must use a class folder if you want to use more than one file for your class definition.
Methods defined in separate files match the file name to the function name and must be
declared in the classdef file. See for more information.
If you want a subclass to have access to the private functions of the superclass, define the
private functions as protected methods of the superclass (that is, in a methods block with
the Access attribute defined a protected).
You cannot put class definitions 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:
fldr1/foo.m % defines class foo
fldr2/foo.m % defines function foo
fldr3/@foo/foo.m % defines class foo
5-15
5 Defining and Organizing Classes
The MATLAB language applies the logic in the following list to determine which version
of foo to call:
• Class fldr1/foo.m takes precedence over the class fldr3/@foo because it is before
fldr3/@foo on the path.
• Class fldr3/@foo takes precedence over function fldr2/foo.m because it is a
class in a class folder and fldr2/foo.m is not a class (classes in class folders take
precedence over functions).
• Function fldr2/foo.m takes precedence over class fldr5/foo.m because it comes
before class fldr5/foo.m on the path and because class fldr5/foo.m is not in a
class folder. Classes not defined in class folders abide by path order with respect to
functions.
• Class fldr3/@foo takes precedence over class fldr4/@foo; therefore, the method
bar is not recognized as part of the foo class (which is defined only by fldr3/@foo).
• If fldr3/@foo/foo.m does not contain a classdef keyword (i.e., it is a MATLAB
class prior to Version 7.6), then fldr4/@foo/bar.m becomes a method 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 is defined by the
combination of methods from all class folders having the same name. This is no longer
true.
Note that for backward compatibility, classes defined in class folders always take
precedence over functions and scripts having the same name, even those that come before
them on the path.
5-16
Class Precedence
Class Precedence
In this section...
“Basic Knowledge” on page 5-17
“Why Mark Classes as Inferior” on page 5-17
“InferiorClasses Attribute” on page 5-17
Basic Knowledge
The material presented in this section builds on an understanding of the following
information:
InferiorClasses Attribute
You can specify the relative precedence of user-defined classes using the class
InferiorClasses attribute. Assign a cell array of class names (represented as
meta.class objects) to this attribute to specify classes that are inferior to the class you
are defining. For example, the following classdef declares that myClass is dominant
over class1 and class2.
classdef (InferiorClasses = {?class1,?class2}) myClass
5-17
5 Defining and Organizing Classes
...
end
The ? operator combined with a class name creates a meta.class object. This syntax
enables you to create a meta.class object without requiring you to construct an actual
instance of the class.
MATLAB built-in classes are always inferior to user-defined classes and should not be
used in this list.
The built-in classes include: double, single, char, logical, int64, uint64, int32,
uint32, int16, uint16, int8, uint8, 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:
• The methods of which class MATLAB calls 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
More About
• “Class Precedence and MATLAB Path” on page 5-15
• “Dominant Argument in Overloaded Plotting Functions”
5-18
Packages Create Namespaces
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 strongly 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.
Package Folders
Packages are special folders that can contain class folders, function and class definition
files, and other packages. Packages define the scope of the contents of the package folder
(that is, a namespace within which names must be unique). This means function and
class names need to be unique only within the package. Using a package provides a
means to organize classes and functions and to select names for these components that
other packages can reuse.
Note: Packages are not supported for classes created prior to MATLAB Version 7.6 (i.e.,
classes that do not use classdef).
+mypack
+mypack/pkfcn.m % a package function
5-19
5 Defining and Organizing Classes
The top-level package folder's parent folder must be on the MATLAB path.
Contents of event:
Note that 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)
Similarly, a package class would be defined with only the class name:
classdef myClass
5-20
Packages Create Namespaces
Calling class methods does not require the package name because you have an instance
of the class:
obj.myMethod(arg) or
myMethod(obj,arg)
mypack.myClass.stMethod(arg)
obj = mypack.myClass;
This section shows you how to access various package members from outside a package.
Suppose 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)
obj1 = mypack.myfirstclass;
obj2 = mypack.mysecondclass(arg);
5-21
5 Defining and Organizing Classes
Package members remain scoped to the package even if the package folder is the current
folder. You must, therefore, always refer to the package members using the package
name.
Package folders do not shadow other package folders that are positioned later on the
path, unlike classes, which do shadow other classes.
Suppose a package and a class have the same name. For example:
fldr1/+foo
fldr2/@foo/foo.m
A call to which foo returns the path to the executable class constructor:
>> which foo
fldr2/@foo/foo.m
A function and a package can have the same name. However, a package name by itself is
not an identifier so if a redundant name occurs alone, it identifies the function. Executing
a package name alone returns an error.
5-22
Packages Create Namespaces
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.
In cases where a package and a class have the same name, a static method takes
precedence over a package function. For example:
fldr1/+foo/bar.m % bar is a function in package foo
fldr2/@foo/bar.m % bar is a static method of class foo
In cases where a path folder contains both package and class folders with the same
name, the class static method takes precedence over the package method:
fldr1/@foo/bar.m % bar is a static method of class foo
fldr1/+foo/bar.m % bar is a function in package foo
More About
• “Class and Path Folders”
5-23
5 Defining and Organizing Classes
Importing Classes
Syntax for Importing Classes
You can import classes into a function to simplify access to class members. For example,
suppose there is a package that contains a number of classes. You need to use only one of
these classes in your function, or perhaps even just a static method from that class. Use
the import command as follows:
function myFunc
import pkg.cls1
obj = cls1(arg,...); % call cls1 constructor
obj.Prop = cls1.StaticMethod(arg,...); % call cls1 static method
end
You do not need to reference the package name (pkg) once you have imported the class
(cls1). You can import all classes in a package using the syntax pkg.*:
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
5-24
Importing Classes
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.
You can not clear the import list from a function workspace. To clear the base workspace
only, use:
clear import
More About
• “Packages Create Namespaces” on page 5-19
5-25
6
Basic Difference
A value class constructor returns an instance that is associated with the variable to
which it is assigned. If you reassign this variable, MATLAB creates a copy of the original
object. If you pass this variable to a function, the function must return the modified
object.
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.
Note: All handle classes must subclass the abstract handle class.
“Modifying Objects” on page 4-60 compares handle and value object behavior when used
as arguments to functions.
Use a handle class when you want to create a reference to the data contained in an object
of the class, and do not want copies of the object to make copies of the object data. For
example, use a handle class to implement an object that contains information for a phone
book entry. Multiple application programs can access a particular phone book entry, but
there can be only one set of underlying data.
6-2
Comparing Handle and Value Classes
The reference behavior of handles enables these classes to support features like events,
listeners, and dynamic properties.
Use value classes to represent entities that do not need to be unique, like numeric values.
For example, use a value class to implement a polynomial data type. You can copy a
polynomial object and then modify its coefficients to make a different polynomial without
affecting the original polynomial.
“Which Kind of Class to Use” on page 6-9 describes how to select the kind of class to
use for your application.
a = int32(7);
b = a;
a = a^4;
b
7
MATLAB copies the value of a to b, which results in two independent versions of the
original object. This behavior is typical of MATLAB numeric classes.
Handle Graphics® classes return a handle to the object created. A handle is a variable
that references an instance of a class. If you copy the handle, you have another variable
that refers to the same object. There is still only one version of the object data. For
example, if you create a Handle Graphics line object and copy its handle to another
variable, you can set the properties of the same line using either copy of the handle.
x = 1:10; y = sin(x);
h1 = line(x,y);
h2 = h1;
6-3
6 Value or Handle Class — Which to Use
MATLAB returns an
If you delete one handle, all copies are now invalid because you have deleted the single
object to which all copies point.
Value Classes
MATLAB associates objects of value classes with the variables to which you assign them.
When you copy a value object, MATLAB also copies the data contained by the object.
The new object is independent of changes to the original object. Instances behave like
standard MATLAB numeric and struct classes. Each property behaves essentially like
a MATLAB array See “Memory Allocation for Arrays” for more information.
Use value classes when assigning an object to a variable and passing an object to a
function must make a copy of the function. Value objects are always associated with one
workspace or temporary variable and go out of scope when that variable goes out of scope
or is cleared. There are no references to value objects, only copies which are themselves
objects.
For example, suppose you define a polynomial class whose Coefficients property
stores the coefficients of the polynomial. Note how copies of these value-class objects are
independent of each other:
p = polynomial([1 0 -2 -5]);
p2 = p;
p.Coefficients = [2 3 -1 -2 -3];
p2.Coefficients
ans =
1 0 -2 -5
6-4
Comparing Handle and Value Classes
Handle Classes
Objects of handle classes use a handle to reference objects of the class. A handle is a
variable that identifies an instance of a class. When you copy a handle object, MATLAB
copies the handle, but not the data stored in the object properties. The copy refers to the
same data as the original handle. If you change a property value on the original object,
the copied object reflects the same change.
All handle classes are subclasses of the abstract handle class. In addition to providing
handle copy semantics, deriving from the handle class enables your class to:
See “The Handle Superclass” on page 6-11 for more information on the handle class
and its methods.
6-5
6 Value or Handle Class — Which to Use
Create a subclass of the employee class for engineer employees, which is also a handle
class. You do not need to specify handle as a superclass in the classdef:
classdef engineer < employee
...
end
A handle is an object that references its data indirectly. When constructing a handle, the
MATLAB runtime creates an object with storage for property values and the constructor
function returns a handle to this object. When you assign the handle to a variable
or when you pass the handle to a function, MATLAB copies the handle, but not the
underlying data.
For example, suppose you have defined a handle class that stores data about company
employees, such as the department in which they work:
classdef employee < handle
properties
Name = ''
Department = '';
end
methods
function e = employee(name,dept)
e.Name = name;
e.Department = dept;
end % employee
function transfer(obj,newDepartment)
obj.Department = newDepartment;
end % transfer
end
end
The transfer method in the previous code changes the employee's department (the
Department property of an employee object). In the following statements, e2 is a copy
of the handle object e. Notice that when you change the Department property of object e,
the property value also changes in object e2.
e = employee('Fred Smith','QE');
6-6
Comparing Handle and Value Classes
The variable e2 is an alias for e and refers to the same property data storage as e.
See “Initializing Property Values” on page 4-11 for information on the differences
between initializing properties to default values in the properties block and initializing
properties from within the constructor. Also, see “Initialize Arrays of Handle Objects” on
page 9-10 for related information on working with handle classes.
If the employee class was a value class, then the transfer method would modify only
its local copy of the employee object. In value classes, methods like transfer that
modify the object must return a modified object to copy over the existing object variable:
When you call transfer, assign the output argument to create the modified object.
e = transfer(e,'Engineering');
In a value class, the transfer method does not affect the variable e2, which is a
different employee object. In this example, having two independent copies of objects
representing the same employee is not a good design. Hence, implement the employee
class as a handle class.
Deleting Handles
You can destroy handle objects before they become unreachable by explicitly calling the
delete function. Deleting the handle of a handle class object makes all handles invalid.
For example:
delete(e2)
e.Department
Invalid or deleted object.
6-7
6 Value or Handle Class — Which to Use
Calling the delete function on a handle object invokes the destructor function or
functions for that object. See “Handle Class Destructor” on page 6-16 for more
information.
6-8
Which Kind of Class to Use
“Class Design for Polynomials” on page 18-2 and “Class to Represent Structured
Data” on page 3-24 provides examples of value classes.
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.
“Class to Implement Linked Lists” on page 3-36 and “Developing Classes — Typical
Workflow” on page 3-8 provides examples of a handle class.
• 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 or printers, in which
the entity or state cannot exist in a MATLAB variable. However, a handle to such
entity can be a variable.
6-9
6 Value or Handle Class — Which to Use
• 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. MATLAB software never creates a unique
handle without calling the class constructor. A copy of a handle object is not unique
because both original and copy reference the same data.
A value class is suitable because you can copy a polynomial object and have two objects
that are identical representations of the same polynomial. See “Subclassing MATLAB
Built-In Types” on page 11-44 for more information on value classes.
6-10
The Handle Superclass
In this section...
“Building on the Handle Class” on page 6-11
“Handle Class Methods” on page 6-12
“Relational Methods” on page 6-12
“Testing Handle Validity” on page 6-12
“When MATLAB Destroys Objects” on page 6-14
Handle Subclasses
There are two subclasses of the handle class that provide additional features when you
derive your class from these subclasses:
Deriving from subclasses of the handle class means that your class is a handle class.
It inherits all the handle class methods, plus the special features provided by these
subclasses.
6-11
6 Value or Handle Class — Which to Use
You can list the methods of a class by passing the class name to the methods function:
>> methods('handle')
addlistener findobj gt lt
delete findprop isvalid ne
eq ge le notify
“Events and Listeners — Syntax and Techniques” on page 10-19 provides information
on how to use the notify and addlistener methods, which are related to the use of
events.
Relational Methods
function TF = eq(H1,H2)
function TF = ne(H1,H2)
function TF = lt(H1,H2)
function TF = le(H1,H2)
function TF = gt(H1,H2)
function TF = ge(H1,H2)
The handle class overloads these functions with implementations that allow for 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.
6-12
The Handle Superclass
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.
Use the isa function to determine if a handle is of class handle, or is a Java or Handle
Graphics handle. For example, consider the button class, which derives from the
handle class:
classdef button < handle
properties
UiHandle
end
methods
function obj = button(pos)
if nargin > 0
if length(pos) == 4
obj.UiHandle = uicontrol('Position',pos,'Style','pushbutton');
else
error('Improper position')
end
end
end
end
end
Determine the difference between the graphics object handle (stored in the UiHandle
property) and the handle class object, h. Use ishandle to test the validity of Handle
Graphics object handles:
% h is a handle object
>> isa(h,'handle')
ans =
1
6-13
6 Value or Handle Class — Which to Use
If you close the figure, the ishandle function determines that the Handle Graphics
handle is not valid:
>> close
>> ishandle(h.UiHandle)
ans =
>> isa(h,'handle')
ans =
1
>> isvalid(h)
ans =
>> isa(h,'button')
ans =
6-14
The Handle Superclass
When MATLAB destroys an object, it also destroys values stored in the properties of the
object and returns any computer memory associated with the object to 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. You can
define a delete method in your handle subclass for these purposes.
6-15
6 Value or Handle Class — Which to Use
Basic Knowledge
Terms and Concepts
Class destructor – a method named delete that MATLAB calls implicitly before
destroying an object of the a handle class. User-defined code can also call delete
explicitly to destroy a handle object.
Nondestructor – a method named delete that does not meet the syntax requirements
of a valid destructor. Consequently, MATLAB does not call this method implicitly when
destroying an object.
• Must have one scalar input argument that is an object of the class.
• Must not define output arguments
• Cannot be Sealed, Static, or Abstract
6-16
Handle Class Destructor
• Throw errors
• Create new handles to the object being destroyed
If you define a delete method that can be called with more than one input argument, or
that returns any output arguments, then MATLAB does not recognize that method as the
class destructor, and does not call it when destroying an object of the class.
For example, suppose an object opens a file for writing and you want to close the file in
your delete method. This delete function calls fclose on a file identifier that the
object's FileID property stores:
function delete(obj)
fclose(obj.FileID);
end
For an example that uses this delete method, see “Class to Manage Writable Files”.
6-17
6 Value or Handle Class — Which to Use
Therefore, defining a delete method in a handle subclass does not override the handle
class delete method; the subclass delete methods augment the superclass delete
methods.
You cannot define a valid destructor that is Sealed. MATLAB returns an error when you
attempt to instantiate a class that defines a Sealed destructor.
For example, if a superclass defines a method named delete that is not a valid
destructor and is Sealed, then subclasses:
Object Lifecycle
MATLAB invokes the destructor delete method when the lifecycle of an object ends.
The lifecycle of an object ends when the object is:
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 any handle array.
6-18
Handle Class Destructor
A variable goes out of scope when you explicitly clear it or when its function ends. When
a variable goes out of scope, if 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 so MATLAB calls the delete function of
supclass1 before the delete function 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 MATLAB to call the delete methods for those
objects, if there are no other references to those objects.
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
6-19
6 Value or Handle Class — Which to Use
delete(obj)
A class can prevent explicit destruction of an object by setting its delete method
Access attribute to private. MATLAB issues an error if you explicitly call delete on a
handle object whose delete method is private. However, a method of the class can call
the private delete method.
Similarly, if the class delete method Access attribute has a value of protected, only
methods of the class and any subclasses can explicitly delete objects of that class.
However, when an object’s lifecycle ends, MATLAB calls the object’s delete method
when destroying the object regardless of method’s Access attribute setting. See “Object
Lifecycle” on page 6-18 for information on when MATLAB destroys objects and
“Sequence During Handle Object Destruction” on page 6-19 for information on how
MATLAB calls object delete methods.
Class destructor behavior differs from the normal behavior of an overridden method.
MATLAB executes each delete method of each superclass of an object 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. Therefore, a superclass with a private delete method does not prevent the
destruction of subclass objects.
Declaring a private delete method makes most sense for sealed classes. The reason for
this is because, in the case where classes are not sealed, subclasses can define their own
delete methods with public access, and MATLAB calls a private superclass delete method
as a result of an explicit call to a public subclass delete method.
6-20
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.
A delete method defined by a value class cannot be a class destructor. See “Basic
Difference” on page 6-2 for information on the difference between a value and handle
class.
See “Syntax of Class Destructor Method” on page 6-16 for information on how to
implement a delete method that is a valid destructor.
6-21
6 Value or Handle Class — Which to Use
function HM = findobj(H,<conditions>)
The findobj method returns an array of handles matching the conditions specified.
The findprop method returns the meta.property object associated with the
PropertyName property defined by the class of h. The property can also be a dynamic
property created by the addprop method of the dynamicprops class.
You can use the returned meta.property object to obtain information about the
property, such as querying the settings of any of its attributes. For example, the following
statements determine that the setting of the AccountStatus property's Dependent
attribute is false.
ba = BankAccount(007,50,'open');
mp = findprop(ba,'AccountStatus'); % get meta.property object
mp.Dependent
ans =
0
6-22
Implementing a Set/Get Interface for Properties
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 7-14
for information on property access methods.
Subclass matlab.mixin.SetGet
Classes inherit set and get methods from matlab.mixin.SetGet:
v = get(h,'PropertyName');
6-23
6 Value or Handle Class — Which to Use
If you specify an array of handles with a single property name, get returns the current
property value for each object in H as a cell array of values, (CV):
CV = get(H,'PropertyName');
When prop is a cell array of string property names and H is an array of handles, get
returns a cell array of values where each row in the cell corresponds to an object in
H and each column in the cell corresponds to a property in prop. get returns the
corresponding property values in an m-by-n cell array, where m = length(H) and n =
length(prop)
prop = {'PropertyName1','PropertyName2'};
CV = get(H,prop);
If you specify a handle array, but no property names, get returns a struct array
in which each structure in the array corresponds to an object in H. Each field in the
structure corresponds to a property defined by the class of H. The value of each field is
the value of the corresponding property. If you do not assign an output variable, then H
must be scalar.
SV = get(H);
See “Using Handle Arrays with Get” on page 6-27 for an example.
set(H,'PropertyName',PropertyValue)
You can pass a cell array of property names and a cell array of property values to set:
set(H,{'PropertyName1','PropertyName2'},...
{Property1Value,Property2Value})
If length(H) is greater than one, then the property value cell array can have values for
each property in each object. For example, if length(H) is 2 (two object handles), then
you can use an expression like this:
6-24
Implementing a Set/Get Interface for Properties
set(H,{'PropertyName1','PropertyName2'},...
{Property11Value,Property12Value;Property21Value,Property22Value})
set(H(1),'PropertyName1',Property11Value,'PropertyName2',Property12Value)
set(H(2),'PropertyName1',Property21Value,'PropertyName2',Property22Value)
If you specify a scalar handle, but no property names, set returns a struct array with
one field for each property in the class of H. Each field contains an empty cell array.
SV = set(h);
6-25
6 Value or Handle Class — Which to Use
end % classdef
h = LineType('--','*');
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')
Using the set and get methods that are inherited from matlab.mixin.SetGet invokes
any existing property access methods that would execute when assigning or querying
property values using dot notation:
h.Style = '-.-';
Error using LineType>LineType.set.Style
Invalid line style
See “Property Access Methods” on page 7-14 for more information on property access
methods.
You can create a struct containing object properties and their current values using get
with only a handle array as input.
For example, the struct SV contains fields whose names correspond to property names.
Each field contains the current value of the respective property.
6-26
Implementing a Set/Get Interface for Properties
Style: '--'
Marker: '*'
Units: 'points'
Create a struct containing the properties that have public SetAccess using set with
an object handle:
% Query setable property values
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 this property in the struct S. set
cannot return possible values for the properties.
H =
Style
Marker
Units
6-27
6 Value or Handle Class — Which to Use
'..'
'--'
When H is an array of handles and you do not specify a property name, get returns a
struct array containing fields with name corresponding to property-names. You must
assign the output of get to a variable when H is not scalar.
SV =
Get the value of the Marker property from the second array element in the SV struct
array:
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 and 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 =
6-28
Implementing a Set/Get Interface for Properties
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.
6-29
6 Value or Handle Class — Which to Use
Limiting Instances
You can limit the number of instances of a class that can exist at any one time. For
example, a singleton class can have only one instance and provides a way to access this
instance. You can create a singleton class using these elements:
The following skeletal class definition shows how you can approach the implementation
of a class that allows you to create only one instance at a time:
The getInstance static method returns a handle to the object created, which the class
stores in a persistent variable. getInstance creates an instance only the first time
called in a session or when the object becomes invalid. For example:
sobj = SingleInstance.getInstance
sobj =
6-30
Controlling the Number of Instances
As long as sobj exists as a valid handle, calling getInstance returns a handle to the
same object. If you delete sobj, then calling getInstance creates an object and returns
the handle.
delete(sobj)
isvalid(sobj)
ans =
0
sobj = SingleInstance.getInstance;
isvalid(sobj)
ans =
6-31
7
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
“Properties with Constant Values” on page 14-2
• Calculate its value based on the current value of other data. See “Property Get
Methods” on page 7-22
• Execute a function to determine if an attempt to assign a value meets a certain
criteria. See “Property Set Methods” on page 7-19
• Trigger an event notification when any attempt is made to get or set its value. See
“Property-Set and Query Events” on page 10-14
• Restrict access by other code to the property value. See the SetAccess and
GetAccess attributes “Property Attributes” on page 7-7
• Control whether its value is saved with the object in a MAT-file. See “Save and Load
Objects” on page 12-2
Types of Properties
There are two types of properties:
7-2
How to Use Properties
• Dependent properties — No allocated memory and the get access method calculates
the value when queried
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).
Related Examples
• “Property Attributes”
• “Property Access Methods” on page 7-14
7-3
7 Properties — Storing Class Data
Defining Properties
In this section...
“Property Definition Block” on page 7-4
“Access Property Values” on page 7-5
“Inheritance of Properties” on page 7-5
“Specify Property Attributes” on page 7-5
Coefficients = [0 0 1];
end
properties block
7-4
Defining Properties
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 “Defining
Default Values” on page 4-12 for more information about how MATLAB evaluates default
value expressions.
val = obj.PropertyName
Assign values to properties by putting the property reference on the left side of the equal
sign:
obj.PropertyName = val
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.
7-5
7 Properties — Storing Class Data
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
More About
• “Properties”
• “Property Attributes” on page 7-7
7-6
Property Attributes
Property Attributes
In this section...
“Specifying Property Attributes” on page 7-7
“Table of Property Attributes” on page 7-7
Attribute values apply to all properties defined within the properties...end code
block that specifies the nondefault values.
Property Attributes
Attribute Name Class Description
AbortSet logical If true, MATLAB does not set the
property value if the new value is the same
default = false as the current value and does not call the
property set method, if one exists.
7-7
7 Properties — Storing Class Data
7-8
Property Attributes
default = public
7-9
7 Properties — Storing Class Data
7-10
Property Attributes
7-11
7 Properties — Storing Class Data
7-12
Mutable and Immutable Properties
• 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 to perform
this action.
• SetAccess = immutable — only the class constructor can set property values. You
cannot change the value of an object property.
More About
• “Modifying Objects”
7-13
7 Properties — Storing Class Data
• Execute code before assigning property values to perform actions such as:
• Calculate the value of properties that do not store values (for an example, see
“Calculate Data on Demand” on page 3-28)
• Change the value of other properties
• Trigger events (for an example, see “Defining and Triggering an Event” on page
10-5)
Property access methods execute automatically whenever you set or query the
corresponding property values from outside the access method. MATLAB never calls the
7-14
Property Access Methods
set method for a property of a particular class if the property value is set from within
that set method. Similarly, the get method for a property of a particular class is never
called if the property is queried from within that get method.
You can obtain the function handle for the set and get access methods from the property’s
meta.property object. The meta.property SetMethod and GetMethod properties
contain the function handles for these methods.
• 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 “Set Method Behavior” on page 7-20 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
“Implementing a Set/Get Interface for Properties” on page 6-23 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.
7-15
7 Properties — Storing Class Data
Access methods have special names that include the property's 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's Methods property.
The property meta.property object contains function handles to the property’s set
and get methods. SetMethod property contains a function handle to the property's set
method and the GetMethod property contains a function handle to the property's get
method.
For example, if the class MyClass defines a set function for its Text property, you can
obtain a function handle to this method from the meta.class object:
mc = ?ClassName;
mp = findobj(mc.PropertyList,'Name','PropertyName');
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.
7-16
Property Access Methods
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:
• 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 “Creating Property Listeners” on page
10-29.
val = obj.PropName(n);
obj.PropName(n) = val;
MATLAB:
MATLAB always passes scalar objects to set and get methods. When reference or
assignment occurs on an array, MATLAB calls the set and get methods in a loop.
See “Assigning to Read-Only Properties Containing Objects” on page 7-28 for related
information.
7-17
7 Properties — Storing Class Data
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
7-18
Property Set Methods
In this section...
“Overview of Property Access Methods” on page 7-19
“Property Set Method Syntax” on page 7-19
“Validate Property Set Value” on page 7-20
“Set Method Behavior” on page 7-20
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.
methods
function set.PropertyName(obj,value)
...
end
7-19
7 Properties — Storing Class Data
You must use default method attributes for property set methods. The methods block
defining the set method cannot specify attributes.
classdef MyClass
properties
Prop1
end
methods
function obj = set.Prop1(obj,value)
if (value > 0)
obj.Prop1 = value;
else
error('Property value must be positive')
end
end
end
end
For an example of a property set method, see “Restrict Properties to Specific Values” on
page 3-26 .
• Assigning a value 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.
• Initializing default values in class definitions when loading the class
• Assigning a property to its default value that is specified in the class definition
• Copying a value object (that is, not derived from the handle class). MATLAB does not
call the set or get method when copying property values from one object to another.
7-20
Property Set Methods
• Assigning a property value that is the same as the current value when the property’s
AbortSet attribute is true. See “Aborting Set When Value Does Not Change” on
page 10-32 for more information on this attribute.
A set method for one property can assign values to other properties of the object. These
assignments do call any set methods defined for the other properties. For example, a
graphics window object can have a Units property and a Size property. Changing the
Units property can also require a change to the values of the Size property to reflect the
new units.
7-21
7 Properties — Storing Class Data
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
Use the property set method to validate the property value. Performing validation when
setting a property ensures the object is in a valid state. Use the property get method only
to return the value that has been validated by set.
7-22
Property Get Methods
• 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.
Related Examples
• “Access Methods for Dependent Properties”
7-23
7 Properties — Storing Class Data
Typically, the property get method queries other property values to determine what
value to return for the dependent property.
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;
switch c
7-24
Access Methods for Dependent Properties
case 'E'
v = obj.DollarAmount / 1.3;
case 'P'
v = obj.DollarAmount / 1.5;
otherwise
v = obj.DollarAmount;
end
format bank
value = v;
end
end
end
Now the get method for the PropertyName property determines the value of that
property and assigns it to the object from within the method:
The get method calls a function or static method calculateValue to calculate the
property value and returns value to the code accessing the property. The property get
method can take whatever action is necessary within the method to produce the output
value.
“Calculate Data on Demand” on page 3-28 provide an example of a property get method.
7-25
7 Properties — Storing Class Data
For example, suppose you have a class that changes the name of a property from
OldPropName to NewPropName. You want to continue to allow the use of the old name
without exposing it to new users. You can make OldPropName a dependent property
with set and get methods as show in the following example:
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, and code that
accesses OldPropName continues to work as expected.
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:
7-26
Access Methods for Dependent Properties
7-27
7 Properties — Storing Class Data
• 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:
• 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
7-28
Properties Containing Objects
end
classdef ValClass
properties
Vprop
end
end
a =
Use the private PropHandle property to set the property of the HanClass object it
contains:
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;
More About
• “Mutable and Immutable Properties”
7-29
7 Properties — Storing Class Data
It is possible for more than one program to define dynamic properties on the same object
so you must take care to 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 “Assigning
Data to the Dynamic Property” on page 7-31)
• MATLAB saves and loads dynamic properties when you save and load the objects to
which they are attached (see “Save and Load Dynamic Properties” on page 12-33
and “Dynamic Properties and ConstructOnLoad” on page 7-35)
• Define attributes for dynamic property (see “Setting Dynamic Property Attributes” on
page 7-31).
• Add property set and get access methods (see “Defining Property Access Methods for
Dynamic Properties” on page 7-34)
• Listen for dynamic property events (see “Responding to Dynamic-Property Events” on
page 7-32)
• Access dynamic property values from object arrays, with restricted syntax (see “Object
Arrays with Dynamic Properties” on page 9-13)
7-30
Dynamic Properties — Adding Properties to an Instance
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:
Use the meta.DynamicProperty object associated with the dynamic property to set
property attributes. For example:
P.Hidden = true;
The property attributes Constant and Abstract have no meaning for dynamic
properties and setting the value of these attributes to true has no effect.
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 the widget classes are not designed to store location data for your particular
7-31
7 Properties — Storing Class Data
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
7-32
Dynamic Properties — Adding Properties to an Instance
The dynamicprops class defines two events and inherits one from handle:
b2 = button([20 40 80 20]);
Create a function to attach listeners to the button object, b2, and a listener callback
function:
function listenDynoEvent(obj)
addlistener(obj,'PropertyAdded',@eventPR);
addlistener(obj,'PropertyRemoved',@eventPR);
function eventPR(src,evnt)
mc = metaclass(src);
fprintf(1,'%s %s \n',mc.Name,'object');
fprintf(1,'%s %s \n','Event triggered:',evnt.EventName);
end
end
Add the listeners to the button object, b2. Then, add a dynamic property, myCoord.
listenDynoEvent(b2)
mp = b2.addprop('myCoord');
The listener callback function, eventPR, executes and displays the object class and event
name:
button object
Event triggered: PropertyAdded
delete(mp)
button object
7-33
7 Properties — Storing Class Data
Obtain the meta.DynamicProperty object for a dynamic property using the handle
findprop method. Use findprop if you do not have the object returned by addprop:
mp = findprop(b2,'myCoord');
Dynamic properties support property set and get events so you can define listeners for
these properties. Listeners are bound to the particular dynamic property for which you
define them.
If you delete a dynamic property, and then create another one with the same name,
the listeners do not respond to events generated by the new property, even though the
property has the same name as the property for which the event was defined. Having a
listener defined for a deleted dynamic property does not cause an error, but the listener
callback is never executed.
“Property-Set and Query Events” on page 10-14 provides more information on how to
define listeners for these events.
Note: 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 attempt to
access the property value from that function.
• Define a function that implements the desired 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.
7-34
Dynamic Properties — Adding Properties to an Instance
• Assign a function handle pointing to 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 and you cannot use a naming scheme like
set.PropertyName. Instead, use any valid function name.
Suppose you want to create a property set function for the button class dynamic
property myCoord created previously. Write the function as follows:
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. The function assigns the value to the property if the value
is valid.
Use the handle class method findprop to get the meta.DynamicProperty object:
mb1 = b1.findprop('myCoord');
mb1.SetMethod = @set_myCoord;
MATLAB calls the property set function whenever you set this property:
If you create dynamic properties from the class constructor, you can cause a conflict if
you also set the class's 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
7-35
7 Properties — Storing Class Data
• 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 12-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 it is necessary for you to use ConstructOnLoad and you add dynamic properties
from the class constructor (and want the constructor's call to addprop to be executed at
load time) then set the dynamic property's Transient attribute to true. This setting
prevents the property from being saved. For example:
classdef (ConstructOnLoad) MyClass < dynamicprops
function obj = MyClass
P = addprop(obj,'DynProp');
P.Transient = true;
...
end
end
7-36
8
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 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 enables you to hide data and create special interfaces that must be used
to access the data stored in objects.
See “Methods That Modify Default Behavior” on page 16-2 for a discussion of how to
create classes that modify standard MATLAB behavior.
See “Class Files and Folders” on page 4-2 for information on the use of @ and path
directors and packages to organize your class files.
See “Methods In Separate Files” for the syntax to use when defining classes in more than
one file.
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 8-7.
• 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
8-2
How to Use Methods
property values with data obtained from input arguments. The class constructor
method must return the object it creates. See “Class Constructor Methods” on page
8-15
• 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 6-16
• Property access methods enable a class to define code to execute whenever a property
value is queried or set. See “Property Access Methods”
• 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 8-23
• 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 16-8 for more information.
• Abstract methods serve to define a class that cannot be instantiated itself, but serves
as a way to define a common interface used by a number of subclasses. Classes that
contain abstract methods are often referred to as interfaces. See “Abstract Classes” on
page 11-80 for more information and examples.
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 7-14)
• Conversion method that converts to a package-qualified class, which requires the use
of the package name (see “Packages Create Namespaces” on page 5-19)
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 “Defining Methods” on page 8-7 for more information on how you can define
methods.
8-3
8 Methods — Defining Class Operations
See “Rules for Naming to Avoid Conflicts” on page 8-27 for related information.
8-4
Method Attributes
Method Attributes
In this section...
“Specifying Method Attributes” on page 8-5
“Table of Method Attributes” on page 8-5
Attribute values apply to all methods defined within the methods...end code block that
specifies the nondefault values.
Method Attributes
8-5
8 Methods — Defining Class Operations
8-6
Ordinary Methods
Ordinary Methods
In this section...
“Defining Methods” on page 8-7
“Multi-File Classes” on page 8-8
Defining Methods
You can specify methods:
This example shows the definition of a method (the compute function in this example)
within the classdef and methods blocks:
classdef ClassName
methods (AttributeName = value,...)
function x = compute(obj,inc)
x = obj.y + inc;
end % compute method
...
end % methods block
...
end % classedf
Note: Nonstatic methods must include an explicit object variable in the function
definition. The MATLAB language does not support an implicit reference in the method
function definition.
Either of the following statements is correct syntax for calling a method where obj is an
object of the class defining the compute method:
obj.compute(inc)
compute(obj,inc)
Method attributes apply only to that particular methods block, which is terminated by
the end statement.
8-7
8 Methods — Defining Class Operations
Multi-File Classes
You can define class methods in separate files within the class folder. In this case,
create a function in a separate file having the same name as the function (i.e.,
functionname.m). If you want to specify attribute values for that method, you must
declare the method signature within a methods block in the classdef block . For
example:
classdef myClass
methods (AttributeName = value,...)
tdata = testdata(obj,arg1,arg2)
...
end % methods
...
end % classdef
Do not use methods blocks in the separate files. Define the method as a function. Using
the example above, the file testdata.m, must contain the definition of the testdata
function. Note that the signatures must match.
function tdata = testdata(myClass_object,argument2,argument3)
...
end
• If you want to specify attributes for a method defined in a separate file, you must
declare this method in a methods block (specifying attribute values) within the
classdef 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 constructor method must be defined within the classdef block and, therefore,
cannot be in a separate file.
• Set and get property access methods must be defined within the classdef block and,
therefore, cannot be in separate files.
More About
• “Methods In Separate Files”
• “Determining Which Method Is Invoked”
8-8
Method Invocation
Method Invocation
In this section...
“Determining Which Method Is Invoked” on page 8-9
“Referencing Names with Expressions—Dynamic Reference” on page 8-11
“Controlling Access to Methods” on page 8-12
“Invoking Superclass Methods in Subclass Methods” on page 8-13
“Invoking Built-In Functions” on page 8-14
• The class of the left-most 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 named method, then a function with that name 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
The dominant argument in a method's argument list determines which version of the
method or function that the MATLAB runtime calls. Dominance is determined by the
relative precedences of the classes of the arguments. In general, user-defined classes take
precedence over built-in MATLAB classes. Therefore, the left most argument determines
which method to call. However, user-defined classes can specify the relative dominance of
specific classes.
For example, suppose classA defines classB as inferior and suppose both classes define
a method called combine.
combine(B,A)
actually calls the combine method of classA because A is the dominant argument.
8-9
8 Methods — Defining Class Operations
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:
Here is an example of a case where dot and function notation can give different results.
Suppose 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
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)
8-10
Method Invocation
...
end
end
classB does not define a method with the same name as methodA. Therefore, the
following syntax causes the MATLAB runtime 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 string that is the name of a property or a method. For
example, the following statements are equivalent:
obj.Property1
obj.('Property1')
In this case, obj is an object of a class that defines a property called Property1.
Therefore, you can pass a string 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,...)
8-11
8 Methods — Defining Class Operations
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 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 string input arguments, the current day of the month (the
date). Now suppose you write a function in which you want to call the correct method for
the current day.
ans =
Tuesday
The expression datestr(date,'dd') returns the current date as a string. For example:
datestr(date,'dd')
ans =
11
Therefore, the expression using dot-parentheses (called on Tuesday the 11th) is the
equivalent of:
obj.Tuesday('11')
• public — Any code having access to an object of the class can access this method (the
default).
8-12
Method Invocation
Local and nested functions inside the method files have the same access as the method.
Note that 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)
disp@Asset(s) % Call base class disp method first
fprintf(1,'Number of shares: %g\nShare price: %3.2f\n',...
s.NumShares,s.SharePrice);
end % disp
end
end
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
8-13
8 Methods — Defining Class Operations
8-14
Class Constructor Methods
8-15
8 Methods — Defining Class Operations
Related Information
See “Constructor Calling Sequence” on page 13-10 for information specific to
constructing enumerations.
For example, the following constructor function 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.
8-16
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, the following code calls the class method CalculateValue to assign the
value of the property Value.
function obj = myClass(a,b,c)
obj.Value = obj.CalculateValue(a,b);
...
end
When initializing the object, for example, by assigning values to properties, you must
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:
% obj is the object being constructed
function obj = myClass(arg)
obj.propert1 = arg*10;
obj.method1;
...
end
For more information on defining default property values, see “Defining Default Values”
on page 4-12.
• 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 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 always add a check for zero arguments to the
class constructor to prevent an error if either of the two cases above occur:
8-17
8 Methods — Defining Class Operations
For ways to handle superclass constructors, see “Basic Structure of Constructor Methods”
on page 8-21.
Constructing Subclasses
Subclass constructor functions must explicitly call superclass constructors if the
superclass constructors require input arguments. The subclass constructor must specify
these arguments in the call to the superclass constructor using the constructor output
argument. Here is the syntax:
The class constructor must make all calls to superclass constructors before any other
references to the object. These changes include 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 .
MATLAB calls any uncalled constructors in the left-to-right order in which they are
specified in the classdef line. MATLAB passes no arguments to these functions.
8-18
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).
If you must call superclass constructors with different arguments that depend on some
condition, you can 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, upvector and viewangle can be
passed to the superclass constructor:
8-19
8 Methods — Defining Class Operations
If you must support the 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)
if nargin == 0
super_args = {};
elseif nargin == 4
super_args{1} = upvector;
super_args{2} = viewangle;
else
error('Wrong number of input arguments')
end
cubeObj@Shape(super_args{:});
if nargin > 0
cubeObj.SideLength = length;
cubeObj.Color = color;
end
...
end
end
More on Subclasses
See “Creating Subclasses — Syntax and Techniques” on page 11-7 for information
on creating subclasses.
For information on how objects are destroyed, see “Handle Class Destructor” on page
6-16.
8-20
Class Constructor Methods
8-21
8 Methods — Defining Class Operations
Related Examples
• “Simplifying the Interface with a Constructor” on page 3-27
• “Constructor Arguments and Object Initialization” on page 11-9
8-22
Static Methods
Static Methods
In this section...
“Why Define Static Methods” on page 8-23
“Calling Static Methods” on page 8-23
Static methods are useful when you do not want to first create an instance of the class
before executing some code. For example, you might want to set up the MATLAB
environment or use the static method to calculate data needed to create class instances.
Suppose 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.
To define a method as static, set the methods block Static attribute to true. For
example:
classdef MyClass
...
methods(Static)
function p = pi(tol)
[n d] = rat(pi,tol);
p = n/d;
end
end
end
8-23
8 Methods — Defining Class Operations
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);
Subclasses can redefine static methods unless the method's Sealed attribute is also set
to true in the superclass.
Related Examples
• “Implementing the AccountManager Class”
8-24
Overload Functions for Your Class
In this section...
“Overloading MATLAB Functions” on page 8-25
“Rules for Naming to Avoid Conflicts” on page 8-27
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 the method argument list accepts an object of the class, which MATLAB uses
to determine which version to call.
• Perform the necessary steps in the method to implement the function. For example,
access the object properties to manipulate data, and so on.
Generally, the method that overloads a function produces results similar to the MATLAB
function. However, there are no requirements with regard to how you implement the
overloading method.
Note: MATLAB does not support overloading functions using different signatures for the
same function name.
8-25
8 Methods — Defining Class Operations
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.
8-26
Overload Functions for Your Class
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.
Related Examples
• “Define Arithmetic Operators” on page 18-21
• “Class Operator Implementations” on page 16-37
• “Methods That Modify Default Behavior” on page 16-2
8-27
8 Methods — Defining Class Operations
In this section...
“Extend Array-Creation Functions for Your Class” on page 8-28
“Which Syntax to Use” on page 8-29
“Implement Support for Array-Creation Functions” on page 8-30
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');
8-28
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 (lower case)
inf
true
false
cast
rand
randn
randi
If you need 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.
8-29
8 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.
As a Static method:
methods (Static)
function z = zeros(varargin)
...
end
end
• Implement the prototype object syntax:
zeros(...,'like',obj)
8-30
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 need to 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.
This enables you to implement your methods with signatures like these:
8-31
8 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 8-32 and
“Prototype Object Method Implementation” on page 8-34 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 string 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:
methods (Static)
function z = zeros(varargin)
8-32
Class Support for Array-Creation Functions
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
The zeros method uses default values for the ColorValues property because these
values are appropriate for this application. An implementation of a ones method might
set the ColorValues property to [1,1,1].
Suppose you want to overload the randi function to achieve the following objectives:
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
dims = [varargin{2:end}];
r = zeros(dims,'Color');
for k = 1:prod(dims)
r(k) = Color('RGB',randi(varargin{1},[1,3]));
8-33
8 Methods — Defining Class Operations
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.
methods (Hidden)
function z = zerosLike(obj,varargin)
if nargin == 1
% For zeros('like',obj)
cSpace = obj.ColorSpace;
z = Color;
z.ColorSpace = cSpace;
elseif any([varargin{:}] <= 0)
% For zeros with any dimension <= 0
z = Color.empty(varargin{:});
else
% For zeros(m,n,...,'like',obj)
if ~isscalar(obj)
error('Prototype object must be scalar')
end
obj = Color(obj.ColorSpace,zeros(1,3,'like',obj.ColorValues));
z = repmat(obj,varargin{:});
end
end
8-34
Class Support for Array-Creation Functions
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)
8-35
8 Methods — Defining Class Operations
8-36
Object Precedence in Methods
objectA + objectB
Ordinarily, objects have equal precedence and the method associated with the left-most
object is called. However, there are two exceptions:
In “Class Design for Polynomials” on page 18-2, the polynom 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
calls the DocPolynom plus method (which converts the double, 1, to a DocPolynom
object and then implements the addition of two polynomials). The user-defined
DocPolynom class has precedence over the built-in double class.
8-37
8 Methods — Defining Class Operations
This attribute establishes a relative priority of the class being defined with the order of
the classes listed.
objectA + objectB
More About
• “Rules for Naming to Avoid Conflicts” on page 8-27
8-38
Dominant Argument in Overloaded Plotting 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.
8-39
8 Methods — Defining Class Operations
plot(obj)
plot(ax,obj)
MATLAB calls the plot method in both cases because the TemperatureData class
specifies the matlab.graphics.axis.Axes as inferior.
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)
8-40
Dominant Argument in Overloaded Plotting Functions
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
More About
• “Object Precedence in Methods” on page 8-37
8-41
8 Methods — Defining Class Operations
Where your class defines a method called sliderCallback and obj is an instance of
your class.
To use a static methods 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)
For static methods, the required class name ensures MATLAB dispatches to the method
of the specified class:
8-42
Class Methods for Graphics Callbacks
@MyClass.methodName
Define the static callback method with two input arguments — the event source handle
and the event data that MATLAB passes to the callback
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)method_name(object,src,event,additional_arg,...)
The SeaLevelAdjuster 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 graphics object handles and the calculated color limits.
• The class constructor creates the graphics objects and assigns the slider callback.
• The callback function for the slider accepts the three required arguments — a class
instance, the handle of the event source, and the event data. Because the class saves
the handles of the graphics objects, the callback method does not use the source and
event data arguments.
• The uicontrol callback uses dot notation to reference the callback method:
...'Callback',@slaObj.slider_cb.
classdef SeaLevelAdjuster < handle
properties
Figure
8-43
8 Methods — Defining Class Operations
Axes
Image
CLimit
Slider
end % properties
methods
function slaObj = SeaLevelAdjuster(x,map)
slaObj.Figure = figure('Colormap',map,...
'Position',[100,100,560,580],...
'Resize','off');
slaObj.Axes = axes('DataAspectRatio',[1,1,1],...
'XLimMode','manual','YLimMode','manual',...
'Parent',slaObj.Figure);
slaObj.Image = image(x,'CDataMapping','scaled',...
'Parent',slaObj.Axes);
slaObj.CLimit = get(slaObj.Axes,'CLim');
slaObj.Slider = uicontrol('Style','slider',...
'Parent',slaObj.Figure,...
'Max',slaObj.CLimit(2)-1,...
'Min',slaObj.CLimit(1)-1,...
'Value',slaObj.CLimit(1),...
'Units','normalized',...
'Position',[0.9286,0.1724,0.0357,0.6897],...
'SliderStep',[0.002,0.005],...
'Callback',@slaObj.slider_cb);
end % SeaLevelAdjuster
function slider_cb(slaObj,~,~)
% src and event arguments are not used
min_val = get(slaObj.Slider,'Value');
max_val = max(max(get(slaObj.Image,'CData')));
slaObj.Axes.CLim = [min_val max_val];
drawnow
end % slider_cb
end % methods
end % classdef
The class is designed to be used with the cape image that is included with the MATLAB
product. To obtain the image data, use the load command:
load cape X map
8-44
Class Methods for Graphics Callbacks
After loading the data, create a SeaLevelAdjuster object for the image:
slaObj = SeaLevelAdjuster(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
More About
• “Ordinary Methods” on page 8-7
• “Static Methods” on page 8-23
8-45
8 Methods — Defining Class Operations
8-46
9
Object Arrays
Basic Knowledge
The material presented in this section builds on an understanding of the information
presented in the following sections.
Class Definitions
• “Matrix Indexing”
• “Empty Matrices, Scalars, and Vectors”
• “Multidimensional 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
9-2
Create Object Arrays
To preallocate the object array, assign the last element of the array first. MATLAB fills
the first to penultimate array elements with default ObjectArray objects.
After preallocating the array, assign each object Value property to the corresponding
value in the input array F. To use the class:
9-3
9 Object Arrays
end
methods
function obj = ObjProp
obj.RegProp = randi(100);
end
end
end
Create an array of ObjProp objects and access the RegProp property of each object:
for k = 1:5
a(k) = ObjProp;
end
a.RegProp
ans =
91
ans =
13
ans =
92
ans =
64
ans =
10
Related Information
For information on array initialization, see “Initialize Object Arrays” on page 9-5.
For information specific to initialization of handle array, see “Initialize Arrays of Handle
Objects” on page 9-10
9-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)
9-5
9 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.
9-6
Initialize Object Arrays
9-7
9 Object Arrays
Empty Arrays
In this section...
“Creating Empty Arrays” on page 9-8
“Assigning Values to an Empty Array” on page 9-8
ary = SimpleValue.empty(5,0);
For example, using the SimpleValue defined in the “Initialize Object Arrays” on page
9-5 section, create an empty array:
ary = SimpleValue.empty(5,0);
class(ary)
ans =
SimpleValue
9-8
Empty Arrays
ary(1)
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).
9-9
9 Object Arrays
Consider what happens when MATLAB initialize an array by first assigning to the last
element in the array. (The last element is the one with the highest index values). For
example, 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.
Element A(1,1) is also an instance of the InitHandleArray class, but its RandNumb
property is set to a different random number. MATLAB called the class constructor to
create a single object, which MATLAB then copied to all the remaining array elements.
Calling the constructor resulted in another call to the randi function, which returns a
new random number:
9-10
Initialize Arrays of Handle Objects
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.
Related Information
See “Indexing Multidimensional Arrays” and “Reshaping Multidimensional Arrays” for
information on array manipulation.
9-11
9 Object Arrays
See “Object Array Indexing” for information on implementing subsasgn methods for
your class.
9-12
Object Arrays with Dynamic Properties
Create an object array and add dynamic properties to each member of the array.
a(1) = ObjectArrayDynamic;
a(2) = ObjectArrayDynamic;
a(1).addprop('DynoProp');
a(1).DynoProp = 1;
a(2).addprop('DynoProp');
a(2).DynoProp = 2;
a.RegProp
ans =
ans =
85
9-13
9 Object Arrays
MATLAB returns an error if you try to access the dynamic properties of all array
elements using this syntax.
a.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 7-30 .
9-14
Concatenating Objects of Different Classes
Basic Knowledge
The material presented in this section builds on an understanding of the information
presented in the following sections.
Note: MATLAB does not convert objects to a common superclass unless those objects are
part of a heterogeneous hierarchy. For more information, see “Heterogeneous Arrays” on
page 9-21.
Concatenating Objects
Concatenation combines objects into arrays:
9-15
9 Object Arrays
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.
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.
9-16
Concatenating Objects of Different Classes
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:
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:
9-17
9 Object Arrays
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
function hsvObj = HSVColor(obj)
if isa(obj,'RGBColor')
hsvObj = HSVColor(rgb2hsv(obj.Color));
end
end
end
end
Create an array of RGBColor and HSVColor objects with the revised superclass:
9-18
Concatenating Objects of Different Classes
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
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:
9-19
9 Object Arrays
Your applications can require additional error checking and other coding techniques. The
classes in these examples are designed only to demonstrate concepts.
More About
• “Object Converters”
• “Hierarchies of Classes — Concepts”
9-20
Heterogeneous Arrays
Heterogeneous Arrays
In this section...
“Why Heterogeneous Arrays” on page 9-21
“Heterogeneous Array Concepts” on page 9-21
“Nature of Heterogeneous Arrays” on page 9-22
“Unsupported Hierarchies” on page 9-25
“Default Object” on page 9-26
“Conversion During Assignment and Concatenation” on page 9-27
• 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
9-21
9 Object Arrays
• Array class
• Property access
• Method invocation
9-22
Heterogeneous Arrays
The class of a heterogeneous array is that of the most specific superclass shared by the
objects of the array.
If these 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];
9-23
9 Object Arrays
a2 = [SpecificA,SpecificB,SpecificC];
If you assigned an object of the class SpecificC to array a1 using indexing, the class of
a1 becomes RootSuperclass:
a1(3) = SpecificC;
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];
Access Properties
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
Referring to Prop1 using dot notation returns the value of Prop1 for each object in the
array.
Invoke Methods
To invoke a method on a heterogeneous array, the class of the array must define or
inherit the method as Sealed. For example, suppose CommonSuperclass 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 there is
no ambiguity in the method definition.
9-24
Heterogeneous Arrays
Unsupported Hierarchies
Heterogeneous hierarchies cannot have ambiguities when obtaining default
objects 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).
The next diagram shows two separate heterogeneous hierarchies. ClassA has only one
root superclass (called OtherBaseClass). The heterogeneous hierarchy is no longer
ambiguous:
9-25
9 Object Arrays
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);
9-26
Heterogeneous 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 you want 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.
Related Examples
• “Handle-Compatible Classes and Heterogeneous Arrays”
9-27
10
See “Events and Listeners — Concepts” on page 10-12 for a more thorough discussion
of the MATLAB event model.
• addlistener(eventObject,'EventName',@functionName) — for an
ordinary function.
• addlistener(eventObject,'EventName',@Obj.methodName) — for a
method of Obj.
10-2
Learn to Use Events and Listeners
• addlistener(eventObject,'EventName',@ClassName.methodName) — for
a static method of the class ClassName.
• Listener callback functions must define at least two input arguments — the
event source object handle and the event data (See “Function Handle for Listener
Callbacks” on page 10-26 for more information).
• You can modify the data passed to each listener callback by subclassing the
event.EventData class.
10-3
10 Events — Sending and Responding to Messages
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
• SourceOfEvent — An object of the class defining the event on which the event
occurred.
• 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.
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
10-4
Learn to Use Events and Listeners
The SimpleEventClass defines a property set method (see “Property Set Methods”)
from which it triggers an event if the property is set to a value exceeding a certain limit.
The property set method performs these operations:
10-5
10 Events — Sending and Responding to Messages
end
methods
function set.Prop1(obj,value)
orgvalue = obj.Prop1;
obj.Prop1 = value;
if (obj.Prop1 > 10)
% Trigger the event using custom event data
notify(obj,'Overflow',SpecialEventDataClass(orgvalue));
end
end
end
end
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).
10-6
Learn to Use Events and Listeners
sec = setupSEC;
sec.Prop1 = 5;
sec.Prop1 = 15; % listener triggers callback
10-7
10 Events — Sending and Responding to Messages
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.
Use the PropLis class by creating an instance and calling its attachListener method:
plObj = PropLis;
plObj.ObservedProp
ans =
plObj.attachListener
plObj.ObservedProp = 2;
Related Examples
• “Property Set Listener” on page 10-9
10-8
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.
10-9
10 Events — Sending and Responding to Messages
AxHandle
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 after three push-button clicks.
buttonObj = PushButton;
10-10
Property Set Listener
Related Examples
• “Listen for Changes to Property Values” on page 10-29
10-11
10 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 need to 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
10-19
• After creating an object of the event-declaring class, attach listener to that object.
“Control Listener Lifecycle” on page 10-23
• 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
10-19
• Listeners execute a callback function when notified that the event has occurred.
“Specify Listener Callbacks” on page 10-26
• 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 10-23
10-12
Events and Listeners — 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
10-13
10 Events — Sending and Responding to Messages
MATLAB passes the source object to the listener callback in the required event data
argument. This enables you to access any of the object's public properties from within
your listener callback function.
“Comparing Handle and Value Classes” on page 6-2 provides general information on
handle classes.
“Events and Listeners — Syntax and Techniques” on page 10-19 shows the syntax for
defining a handle class and events.
• 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
10-14
Events and Listeners — Concepts
• 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. Note that the event.PropertyEvent class is a sealed
subclass of event.EventData.
See “Listen for Changes to Property Values” on page 10-29 for a description of the
process for creating property listeners.
See “Property Access Methods” on page 7-14 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:
• 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 “Enabling
and Disabling the Listeners” on page 10-49 for an example.
• Recursive — Allow listener to cause the same event that triggered the execution of
the callback
10-15
10 Events — Sending and Responding to Messages
Recursive is false by default. If the callback triggers its own event, the listener
cannot execute recursively. Setting the Recursive to true can create a situation
where infinite recursion reaches the recursion limit and triggers an error.
10-16
Event Attributes
Event Attributes
Specifying Event Attributes
The following table lists the attributes you can set for events. To specify a value
for an attribute, assign the attribute value on the same line as the event key word.
For example, all the events defined in the following events block have protected
ListenAccess and private NotifyAccess.
events (ListenAccess = 'protected', NotifyAccess = 'private')
EventName1
EventName2
end
To define other events in the same class definition that have different attribute settings,
create another events block.
Event Attributes
Attribute Name Class Description
Hidden logical Default = If true, event does not appear in list of events returned
false by events function (or other event listing functions or
viewers).
ListenAccess • enumeration, Determines where you can create listeners for the event.
default = public
• public — Unrestricted access
• meta.class
object • protected — Access from methods in class or
subclasses
• cell array of
meta.class • private — Access by class methods only (not from
objects subclasses)
• List classes that have listen access to this event. Specify
classes as meta.class objects in the form:
10-17
10 Events — Sending and Responding to Messages
10-18
Events and Listeners — Syntax and Techniques
Name Events
Define an event by declaring an event name inside an events block. For example, the
following class creates an event called ToggledState.
Trigger Events
The OnStateChange method calls notify to trigger the event. Pass the handle of the
object that caused the event and the name of the event.
10-19
10 Events — Sending and Responding to Messages
end
end
end
end
Listen to Events
Once the call to notify triggers an event, MATLAB broadcasts a message to all listeners
that are listening for that event on a specific object. To create a listener for an event, use
the addlistener handle class method.
For example, the RespondToToggle class defines objects that listen for the
ToggleState event defined in the class ToggleButton.
The class RespondToToggle adds the listener from within its constructor. The class
defines the callback (handleEvnt) as a static method that accepts the two standard
arguments:
• src — the handle of the object triggering the event (i.e., a ToggleButton object)
• evtdata — an event.EventData object
The listener executes the callback when the specific ToggleButton object executes the
notify method.
10-20
Events and Listeners — Syntax and Techniques
tb = ToggleButton;
rtt = RespondToToggle(tb);
Whenever you call the ToggleButton object's OnStateChange method, notify triggers
the event:
tb.OnStateChange(true)
ToggledState is true
tb.OnStateChange(false)
ToggledState is false
Remove Listeners
You can 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
ListenerHandle
end
methods
function obj = RespondToToggle(toggle_button_obj)
hl = addlistener(toggle_button_obj,'ToggledState',@RespondToToggle.handleEvnt);
obj.ListenerHandle = hl;
end
end
methods (Static)
function handleEvnt(src,~)
if src.State
disp('ToggledState is true')
else
disp('ToggledState is false')
end
end
end
end
With this code change, you can remove the listener from an instance of the
RespondToToggle class. For example:
tb = ToggleButton;
rtt = RespondToToggle(tb);
At this point, 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:
10-21
10 Events — Sending and Responding to Messages
delete(rtt.ListenerHandle)
You do not need to explicitly delete a listener. MATLAB automatically deletes the
listener when the object's lifecycle ends (e.g., when the rtt object is deleted).
Note: To save and load objects that are subclasses of event.EventData, such as
ToggleEventData, enable the ConstructOnLoad class attribute for the subclass.
methods
function data = ToggleEventData(newState)
data.NewState = newState;
end
end
end
The call to notify uses the ToggleEventData constructor to create the necessary
argument.
notify(obj,'ToggledState',ToggleEventData(newState));
Related Examples
• “Property Set Listener” on page 10-9
• “Update Graphs Using Events and Listeners” on page 10-36
10-22
Listener Lifecycle
Listener Lifecycle
In this section...
“Control Listener Lifecycle” on page 10-23
“Temporarily Deactivating Listeners” on page 10-24
“Permanently Deleting Listeners” on page 10-25
• The addlistener method binds the listener to the lifecycle of the object(s) that
generate the event. The listener object persists until MATLAB destroys the event
object.
• The event.listener class constructor creates listeners that are not tied to the
lifecycle of the object(s) generating the event. The listener is active as long as the
listener object remains in scope and is not deleted.
lh = addlistener(obj,'ToggleState',@RespondToToggle.handleEvnt);
The listener callback function must accept at least two arguments, which are
automatically passed by the MATLAB runtime to the callback. The arguments are:
• The source of the event (that is, obj in the call to addlistener)
• An event.EventData object, or a subclass of event.EventData , such as the
ToggleEventData object described earlier “Define Event-Specific Data” on page
10-22.
10-23
10 Events — Sending and Responding to Messages
In cases where the event data (evnt) object is user defined, it must be constructed and
passed as an argument to the notify method. For example, the following statement
constructs a ToggleEventData object and passes it to notify as the third argument:
notify(obj,'ToggledState',ToggleEventData(newState));
You can also create listeners by calling the event.listener class constructor directly.
When you call the constructor instead of using addlistener to create a listener,
the listener exists only while the listener object you create is in scope (e.g., within
the workspace of an executing function). It is not tied to the event-generating object's
existence.
If you want the listener to persist beyond the normal variable scope, you should use
addlistener to create it.
10-24
Listener Lifecycle
delete(lh)
Related Examples
• “Enabling and Disabling the Listeners” on page 10-49
10-25
10 Events — Sending and Responding to Messages
For a function:
@functionName
Defining a listener using an ordinary function as the callback uses this syntax:
lh = addlistener(eventSourceObj,'EventName',@functionName)
10-26
Function Handle for Listener Callbacks
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
Ordinary class methods (i.e., not static methods) require a class object as an argument.
Therefore, you need to add another argument to the callback function definition.
If your listener callback is a method of the class of an object, obj, then your call to
addlistener would use this syntax:
lh = addlistener(eventSourceObj,'EventName',@obj.callbackMethod)
Create a method to use as your callback function and reference this method as a function
handle in a call to addlistener or the event.listener constructor:
lh = addlistener(eventSourceObj,'EventName',@(src,evnt)callbackFunction(obj,src,evnt))
You can specify additional arguments by extending the input argument list:
lh = addlistener(eventSourceObj,'EventName',@(src,event)methodName(obj,src,event,arg1,.
10-27
10 Events — Sending and Responding to Messages
Callback Execution
Listeners execute their callback function when notified that the event has occurred.
Listeners are passive observers in the sense that errors in the execution of a listener
callback does not prevent the execution of other listeners responding to the same event,
or execution of the function that triggered the event.
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 order in which listeners callback functions execute after the firing of an event is
undefined. However, all listener callbacks execute synchronously with the event firing.
The handle class notify method calls all listeners before returning execution to the
function that called notify.
Do not modify and reuse or copy and reuse the event data object that you pass to notify,
which is then passed to the listener callback.
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 these properties
have appropriate values for subsequently called callbacks, you should always create a
new event data object if you call notify with custom event data.
If you want to control how your program responds to errors, use a try/catch statement
in your listener callback function to handle errors.
Related Examples
• “Class Methods for Graphics Callbacks”
10-28
Listen for Changes to Property Values
The listener executes the callback function when MATLAB triggers the property event.
You must define the callback function to have two specific arguments, which are passed
to the function automatically when called by the listener:
10-29
10 Events — Sending and Responding to Messages
• Event source — a meta.property object describing the object that is the source of
the property event
• Event data — a event.PropertyEvent object containing information about the
event
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
The addlistener handle class method enables you to attach a listener to a property
without storing the listener object as a persistent variable. For a property events, use the
four-argument version of addlistener.
If the call
addlistener(EventObject,'PropOne','PostSet',@ClassName.handlePropertyEvents);
10-30
Listen for Changes to Property Values
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 the callback function is a package function:
addlistener(EventObject,'PropOne','PostSet',@package.handlePropertyEvents);
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 “Aborting Set
When Value Does Not Change” on page 10-32)
10-31
10 Events — Sending and Responding to Messages
end
You could define listeners for other events or other properties using a similar approach
and 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
10-32
Listen for Changes to Property Values
When AbortSet is true, MATLAB gets the current property value to compare it
to the value you are assigning to the property. This causes the property get method
(get.Property) to execute, if one exists. However, MATLAB does not catch errors
resulting from the execution of this method and these errors are visible to the user.
Consider using AbortSet only when the cost of setting a property value is much greater
than the cost of always comparing the current value of the property with the new value
being assigned.
The following example shows how the AbortSet attribute works. The AbortTheSet
class defines a property, PropOne, that has listeners for the PreGet and PreSet events
and enables the AbortSet attribute. The behavior of the post set/get events is equivalent
so only the pre set/get events are used for simplicity:
Note: Save the AbortTheSet class in a file with the same name in a folder on your
MATLAB path.
10-33
10 Events — Sending and Responding to Messages
function getPropEvt(obj,src,evnt)
disp ('Pre-get event triggered')
% ...
end
function setPropEvt(obj,src,evnt)
disp ('Pre-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 with the property value of 7, there is not need to trigger the PreSet event:
ats = AbortTheSet(7);
get.PropOne called
If you specify a value other than 7, then MATLAB triggers the PreSet event:
ats = AbortTheSet(9);
get.PropOne called
set.PropOne called
get.PropOne called
Similarly, if you set the PropOne property to the value 9, the AbortSet attribute
prevents the property assignment and the triggering of the PreSet event. Notice also,
that there is no PreGet event generated. Only the property get method is called:
ats.PropOne = 9;
get.PropOne called
a = ats.PropOne
10-34
Listen for Changes to Property Values
get.PropOne called
Pre-set event triggered
set.PropOne called
get.PropOne called
Because a property set method might modify the value that is actually assigned to a
property, MATLAB must query the property value that would result from an assignment
after a call the property’s set method. This results in multiple calls to a property get
method, if one is defined for that property.
10-35
10 Events — Sending and Responding to Messages
In this section...
“Example Overview” on page 10-36
“Techniques Demonstrated in This Example” on page 10-37
“Summary of fcneval Class” on page 10-37
“Summary of fcnview Class” on page 10-38
“Methods Inherited from Handle Class” on page 10-40
“Using the fcneval and fcnview Classes” on page 10-40
“Implementing the UpdateGraph Event and Listener” on page 10-42
“The PostSet Event Listener” on page 10-46
“Enabling and Disabling the Listeners” on page 10-49
“@fcneval/fcneval.m Class Code” on page 10-50
“@fcnview/fcnview.m Class Code” on page 10-51
Example Overview
This example defines two classes:
• 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.
10-36
Update Graphs Using Events and Listeners
fcnview
Properties
fcneval object fcneval
graph Properties
FofXY
Lm observable
Data
Events
UpdateGraph
Listeners
Lm property
UpdateGraph
10-37
10 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.
10-38
Update Graphs 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
10-39
10 Events — Sending and Responding to Messages
“Handle Class Methods” on page 6-12 provides a complete list of methods that are
inherited when you subclass the handle class.
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. Note that you
must 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.
10-40
Update Graphs 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:
10-41
10 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 re-enabled 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.
10-42
Update Graphs 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.
10-43
10 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.
10-44
Update Graphs 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 10-29). Defining a class event provides more flexibility in this case because you can
better control event triggering.
For example, suppose you wanted to update the graph only if the new data is
significantly 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
10-45
10 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 is updated by the
callback.
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 generally 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
10-46
Update Graphs 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:
10-47
10 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
The MATLAB runtime automatically triggers the event so it is not necessary to call
notify.
“Specify Property Attributes” on page 7-5 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 “Enabling and
Disabling the Listeners” on page 10-49).
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 is updated by the
callback.
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
10-48
Update Graphs Using Events and Listeners
end
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
10-49
10 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
10-50
Update Graphs Using Events and Listeners
end
end % methods
end
end
10-51
10 Events — Sending and Responding to Messages
properties
FcnObject % fcneval object
HAxes % subplot axes handle
HLUpdateGraph % UpdateGraph listener handle
HLLm % Lm property PostSet listener handle
HEnableCm % "Listen" context menu handle
HDisableCm % "Don't Listen" context menu handle
HSurface % Surface object handle
end
methods
function obj = fcnview(fcnobj)
if nargin > 0
obj.FcnObject = fcnobj;
obj.createLisn;
end
end
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
10-52
Update Graphs Using Events and Listeners
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
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',...
10-53
10 Events — Sending and Responding to Messages
'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,...
'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
10-54
11
In this section...
“Classification ” on page 11-2
“Developing the Abstraction” on page 11-3
“Designing Class Hierarchies” on page 11-4
“Super and Subclass Behavior” on page 11-4
“Implementation and Interface Inheritance” on page 11-5
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.
11-2
Hierarchies of Classes — Concepts
TestEngineer
(is an Engineer)
Properties
TestStage
At 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.
11-3
11 Building on Other Classes
When designing classes, your abstraction should contain 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, as well as 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.
11-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 (usually, the left-most object in the expression is the dominant
class).
See “Concatenating Objects of Different Classes” on page 9-15 for more information.
See “Object Converters” on page 16-8 for information on defining converter methods.
Interface inheritance is useful in cases where you want a group of classes to provide a
common interface, but these classes create specialized implementations of methods and
properties that define the interface.
11-5
11 Building 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 11-80 for more information and an example.
11-6
Creating Subclasses — Syntax and Techniques
Defining a Subclass
To define a class that is a subclass of another class, add the superclass to the classdef
line after a < character:
classdef ClassName < SuperClass
When inheriting from multiple classes, use the & character to indicate the combination of
the superclasses:
classdef ClassName < SuperClass1 & SuperClass2
See “Class Member Compatibility” on page 11-20 for more information on deriving
from multiple superclasses.
Class Attributes
obj@SuperClass1(args,...);
...
obj@SuperclassN(args,...);
11-7
11 Building on Other Classes
Where obj is the output of the 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 a class called stock that
is a subclass of a class called asset.
classdef stock < asset
methods
function s = stock(asset_args,...)
if nargin == 0
... % Assign values to asset_args
end
% Call asset constructor
s@asset(asset_args);
...
end
end
end
To derive a class from multiple superclasses, initialize the subclass object with calls to
each superclass constructor:
classdef stock < financial.asset & trust.member
11-8
Creating Subclasses — Syntax and Techniques
methods
function s = stock(asset_args,member_args,...)
if nargin == 0
...
end
% Call asset and member class constructors
s@financial.asset(asset_args)
s@trust.member(member_args)
...
end
end
end
If you do not explicitly call the superclass constructors from the subclass constructor,
MATLAB implicitly calls these constructors with no arguments. In this case, the
superclass constructors must support no argument syntax.
In the case of multiple superclasses, MATLAB does not guarantee any specific calling
sequence. If the order in which MATLAB calls the superclass constructors is important,
you must explicitly call the superclass constructors from the subclass constructor.
Ensure that your class constructor supports the zero arguments syntax. Satisfy the need
for a zero-argument syntax by assigning appropriate values to input argument variables
before constructing the object:
For example, the stock class constructor supports the no argument case with the if
statement, but initializes the object for the superclass outside of the if code block.
classdef stock < financial.asset
properties
11-9
11 Building on Other Classes
SharePrice
end
methods
function s = stock(name,pps)
% Support no input argument case
if nargin == 0
name = '';
pps = 0;
end
% Call superclass constructor
s@financial.asset(name)
% Assign property value
s.SharePrice = pps;
end
end
end
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.
11-10
Creating Subclasses — Syntax and Techniques
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)
...
obj@B(x,y);
end
end
end
The old class constructor must be callable with zero input arguments.
This technique is useful when reloading objects that you saved using the old class name.
However, the class of the object reflects the new name. That is, this code returns the new
class name.
class(obj)
If the old class constructor requires arguments, add a constructor to the new class:
classdef NewClass < OldClass
methods
11-11
11 Building on Other Classes
Related Examples
• “No Input Argument Constructor Requirement”
11-12
Sequence of Constructor Calls in Class Hierarchy
If you explicitly call a superclass constructor from the most specific subclass constructor,
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 before accessing the object.
Suppose 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 a specific superclass constructor calling sequence is followed, your
most specific subclass constructor must explicitly call ALL superclass constructors:
11-13
11 Building on Other Classes
If you do not explicitly call all direct superclass constructors, MATLAB does not
guarantee the order in which the superclass constructors are called.
Related Examples
• “Class Constructor Methods”
11-14
Modify Superclass Methods
For example, this subclass defines a foo method, which calls the superclass foo method
classdef sub < super
methods
function foo(obj)
% preprocessing steps
foo@super(obj);
11-15
11 Building on Other Classes
% postprocessing steps
end
end
end
classdef super
methods
function foo(obj)
step1(obj)
step2(obj)
step3(obj)
end
end
methods (Access = protected)
function step1(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.
11-16
Modify Superclass Methods
end
end
Related Examples
• “Invoking Superclass Methods in Subclass Methods”
11-17
11 Building on Other Classes
In the first case, the superclass is just requesting that you define a concrete version of
this property to ensure a consistent interface. In the second case, only the superclass can
access the private property, so the subclass is free to reimplement it in any way.
11-18
Modify Superclass Properties
end
If you create an instance of the subclass and use it to call the superclass method,
MATLAB access the private property of the method's class:
subObj = Sub
subObj =
Prop: 1
subObj.superMethod
ans =
More About
• “Property Attributes”
11-19
11 Building on Other Classes
There are various situations where you can resolve name and definition conflicts, as
described in the following sections.
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)
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's 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. This means that the superclass methods must not have their Sealed
attribute set to true.
11-20
Subclassing Multiple Classes
• 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:
Reduce potential problems by implementing only one unrestricted superclass. In all other
superclasses, all methods are abstract and must be defined by a subclass or inherited
from the unrestricted superclass.
In general, when using multiple inheritance, ensure that all superclasses remain free of
conflicts in definition.
See “Defining a Subclass” on page 11-7 for the syntax used to derive a subclass from
multiple superclasses.
See “Supporting Both Handle and Value Subclasses” on page 11-36 for techniques
that provide greater flexibility when using multiple superclasses.
11-21
11 Building on Other Classes
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 a Sealed Hierarchy of Classes” on page 11-24 for more about this
technique.
Note: Specify attribute values explicitly, not as values returned from functions or other
MATLAB expressions.
11-22
Specify Allowed Subclasses
Specify a list of one or more allowed subclasses in the classdef statement by assigning
meta.class objects to the AllowedSubclasses attribute. Create the meta.class
object referencing a specific class using the ? operator and the class name:
classdef (AllowedSubclasses = ?ClassName) MySuperClass
...
end
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.
11-23
11 Building on Other Classes
However, any referenced subclass that MATLAB cannot find when loading the class is
effectively removed from the list without causing an error or warning.
Note: If MATLAB does not find any of the classes in the allowed classes list, the class is
effectively Sealed. This is equivalent to AllowedSubclasses = {}.
Sealed class hierarchies enable you to use the level of abstraction that your design
requires while maintaining a closed systems of classes.
Related Examples
• “Supporting Both Handle and Value Subclasses”
11-24
Control Access to Class Members
Basic Knowledge
The material presented in this section builds on an understanding of the following
information:
Related Topics
11-25
11 Building on Other Classes
This technique provides greater flexibility and control in the design of a system of
classes. For example, use access control lists when you want to define parts of your class
system in separate classes, but do not want to allow access to class members from outside
the class system.
11-26
Control Access to Class Members
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: You must specify the meta.class objects explicitly (created with the ? operator),
not as values returned by functions or other MATLAB expressions.
Use only the ? operator and the class name to generate the meta.class objects. 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
You must specify these values explicitly, as shown in the example code in this section.
11-27
11 Building on Other Classes
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 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
a = GrantAccess;
a.Prop1
NeedAccess.dispObj(a)
Prop1 is: 7
11-28
Control Access to Class Members
• 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 itsm1 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
Method m1 called
11-29
11 Building on Other Classes
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 in the access list:
• Subclass methods cannot call the superclass method because it is effectively private.
• Subclasses cannot override the superclass method.
• Subclass methods can call the superclass method indirectly using an instance of a
class that is in the access list.
• Nonsubclass methods of classes in the superclass method access list can call the
superclass method using an instance of a subclass that is not in the superclass
method access list.
Attempting to call the superclass m1 method results in an error because subclasses are
not in the access list for the method:
a = AcListSuper;
b = AcListNonSub;
c = AcListSub;
c.sub1(a);
11-30
Control Access to Class Members
AcListSuper_Obj.m1;
The AcListSub sub2 method can call a method of a class that is on the access list for m1,
and that method (nonSub1) does have access to the superclass m1 method:
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’s 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.
methods (Access = {?AcListNonSub})
function obj = m1(obj)
disp('AcListSub m1 method')
end
end
The AcListNonSub class, which is in the m1 method access list, can define a method that
calls the m1 method using an instance of the AcListSub class. While AcListSub is not
in the access list for method m1, it is a subclass of AcListSuper.
11-31
11 Building on Other Classes
c = AcListSub;
b.nonSub2(c);
This is consistent with the behavior of any subclass object, which can be substituted for
an instance 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.
11-32
Property Access List
• 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 give 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.
Related Examples
• “Properties with Access Lists”
11-33
11 Building on Other Classes
classdef MethodAccess
methods (Access = {?ClassA, ?ClassB, ?MethodAccess})
function listMethod(obj)
...
end
end
end
Related Examples
• “Methods with Access Lists”
11-34
Event Access List
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.
Related Examples
• “Events and Listeners — Syntax and Techniques”
11-35
11 Building on Other Classes
In this section...
“Basic Knowledge” on page 11-36
“Handle Compatibility Rules” on page 11-36
“Defining Handle-Compatible Classes” on page 11-37
“Subclassing Handle-Compatible Classes” on page 11-39
“Methods for Handle Compatible Classes” on page 11-41
“Handle-Compatible Classes and Heterogeneous Arrays” on page 11-42
Basic Knowledge
The material presented in this section builds on knowledge of the following information.
Key Concepts
Handle-compatible class is a class that you can combine with handle classes when
defining a set of superclasses.
11-36
Supporting Both Handle and Value Subclasses
A class that does not explicitly set its HandleCompatible attribute to true is:
• 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.
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:
11-37
11 Building on Other Classes
end
end
end
end
end
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 “Getting Information About
Classes and Objects” 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 “Modifying Objects” on page 4-60 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 string
p3 = pi/2; % Result of division operation
end
end
pd =
Assign new values that are different from the default values:
11-38
Supporting Both Handle and Value Subclasses
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:
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.
11-39
11 Building on Other Classes
Suppose you define a class that subclasses a handle class, as well as the handle
compatible Utility class discussed in “A Handle Compatible Class” on page 11-37.
The HPropertyDefaults class has these characteristics:
ans =
If you subclass a value class that is not handle compatible in combination with a handle
compatible class, the subclass is a nonhandle compatible value class. The ValueSub
class:
11-40
Supporting Both Handle and Value Subclasses
ans =
• If an input object is a handle object, then the method can alter the handle object and
these changes are visible to all workspaces that have 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 effect of such
changes are not the same for handle and nonhandle objects.
See “Modifying Objects” on page 4-60 for information about modifying handle and value
objects.
If a method operates on both handle and value objects, the method must return the
modified object. For example, the setTime method returns the object it modifies:
classdef (HandleCompatible) Util
% Utility class that adds a time stamp
properties
11-41
11 Building on Other Classes
TimeStamp
end
methods
function obj = setTime(obj)
obj.TimeStamp = now;
end
end
end
You can invoke only those methods that are sealed by the common superclass on
heterogeneous arrays (Sealed attribute set to true). Sealed methods prevent subclasses
from overriding those methods and guarantee that methods called on heterogeneous
arrays have the same definition for the entire array.
Suppose you need to 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:
11-42
Supporting Both Handle and Value Subclasses
More About
• “Heterogeneous Arrays”
11-43
11 Building 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, rounding
values, and element-wise and matrix multiplication. You can create an object of class
double using an assignment statement, indexing expressions, or using converter
functions.
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.
• char
• cell
• struct
• table
11-44
Subclassing MATLAB Built-In Types
• function_handle
In general, you cannot subclass any class that has its Sealed attribute set to true.
Query the class meta-data to determine if the class is Sealed:
mc = ?ClassName;
mc.Sealed
A value of 0 indicates that the class is not Sealed and can be subclasses.
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.
11-45
11 Building on Other Classes
However, built-in functions that work on built-in classes behave differently with
subclasses. Their behavior depends on which function you are using and whether your
subclass defines properties.
Behavior Categories
When you call an inherited method on a subclass of a built-in class, the result of that call
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.
11-46
Subclassing MATLAB Built-In Types
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.
11-47
11 Building 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 both define a number of methods to
perform arithmetic operations, indexing, matrix operation, and so on. All of 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 define.
sc = DocSimpleDouble(1:10)
sc =
1x10 DocSimpleDouble:
double data:
1 2 3 4 5 6 7 8 9 10
11-48
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
11-49
11 Building 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
11-50
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
11-51
11 Building 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 =
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.
Related Examples
• “Built-In Subclass Without Properties” on page 11-53
• “Built-In Subclass With Properties”
11-52
Built-In Subclass Without Properties
• 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 that you can use on uint8 data (for example, size,
indexing (reference and assignment), 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:
11-53
11 Building on Other Classes
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;
50
100
150
200
250
11-54
Built-In Subclass Without Properties
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:
showImage(img1(100:200,1:160));
11-55
11 Building on Other Classes
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;
11-56
Built-In Subclass Without Properties
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]);
11-57
11 Building on Other Classes
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);
11-58
Built-In Subclass Without Properties
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);
11-59
11 Building on Other Classes
50
100
150
200
250
Related Examples
• “Class Operator Implementations”
• “Built-In Subclass With Properties” on page 11-61
11-60
Built-In Subclass With Properties
This example subclasses the double class and defines a single property.
Property Added
The ExtendDouble class defines the DataString property to contain text that describes
the data. The superclass part (double) of the class contains the data.
Methods Implemented
The following methods modify the behavior of the ExtendDouble class:
11-61
11 Building on Other Classes
properties
DataString
end
methods
function obj = ExtendDouble(data,str)
if nargin == 0
data = 0;
str = '';
elseif nargin == 1
str = '';
end
obj = obj@double(data);
obj.DataString = str;
end
11-62
Built-In Subclass With Properties
sf = subsref(sf,s(1:end));
else
error('Not a supported subscripted reference')
end
sref = ExtendDouble(sf,obj.DataString);
end
end
function disp(obj)
disp(obj.DataString)
disp(double(obj))
end
end
end
Use 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
11-63
11 Building on Other Classes
The sum function continues to operate on the superclass part of the object:
sum(ed)
ans =
55
ed(10:-1:1)
ans =
One to ten
10 9 8 7 6 5 4 3 2 1
However, subscripted assignment does not work because the class does not define a
subsasgn method:
ed(1:5) = 5:-1:1
sort(ed(10:-1:1))
ans =
1 2 3 4 5 6 7 8 9 10
ed = ExtendDouble(15:20,'fifteen to twenty');
a = ed(2)
a =
fifteen to twenty
11-64
Built-In Subclass With Properties
16
whos
c = ed.DataString
c =
fifteen to twenty
whos
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
11-65
11 Building on Other Classes
whos
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.
Related Examples
• “Built-In Subclass Without Properties” on page 11-53
11-66
Understanding size and numel
Other MATLAB functions use size and numel to perform their operations. Usually, you
do not need to overload size and numel. The built-in size and numel functions behave
consistently with user-defined classes.
When used with subclasses of built-in classes, the size and numel functions behave the
same as they behave in the superclass.
d = 1:10;
size(d)
ans =
1 10
numel(d)
ans =
10
dsub = d(7:end);
size(dsub)
ans =
11-67
11 Building on Other Classes
1 4
Create an object and assign the values 1:10 to the superclass part of the object :
sd = SimpleDouble(1:10);
size(sd)
ans =
1 10
The numel function returns the number of elements in the superclass part:
numel(sd)
ans =
10
size([sd;sd])
11-68
Understanding size and numel
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
vs = VerySimpleClass;
vs.Value = 1:10;
size(vs)
ans =
1 1
numel(vs)
ans =
11-69
11 Building on Other Classes
size([vs;vs])
ans =
2 1
numel([vs;vs])
ans =
ans =
1 10
ans =
1 4
ans =
double
ans =
11-70
Understanding size and numel
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 those of arrays of struct:
vsArray(1).Value
ans =
1 2 3 4 5 6 7 8 9 10
vsArray(1).Value(6)
ans =
Other MATLAB functions use the values returned by size. If you change the way size
behaves, ensure that the values returned make sense for the intended use of your class.
11-71
11 Building on Other Classes
A(index1,index2,...,indexn)
If you define a class in which nargout for subsref or nargin for subsasgn is different
from the value returned by the default numel, then overload numel for that class to
ensure that it returns the correct values.
11-72
Class to Represent Hardware
Class Objective
This example shows the implementation of a class to represent an optical multiplex card.
These cards typically have a number of input ports, which this class represents by the
port data rates and names. There is also an output port. The output rate of a multiplex
card is the sum of the input port data rates.
Class Definition
Here is the definition of the MuxCard class. Notice that the input port rates initialize the
int32 portion of class.
methods
function obj = MuxCard(inptnames, inptrates, outpname)
11-73
11 Building on Other Classes
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
Methods of int32
The constructor takes three arguments:
omx =
int32 data:
11-74
Class to Represent Hardware
3 12 12 48
Use an DocMuxCard object like an int32. For example, this statement accesses the
int32 data in the object to determine the names of the input ports that have a rate of
12:
omx.InPutNames(omx==12)
ans =
'inp2' 'inp3'
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
11-75
11 Building on Other Classes
ans =
double
ans =
char
ans =
1
ans =
1
11-76
Determine Array Class
ans =
1
isa returns true for classes derived from the specified class. For example, the SubInt
class derives from the built-in type int16:
classdef SubInt < int16
methods
function obj = SubInt(data)
if nargin == 0
data = 0;
end
obj = obj@int16(data);
end
end
end
By definition, an instance of the SubInt class is also an instance of the int16 class:
aInt = SubInt;
isa(aInt,'int16')
ans =
1
ans =
1
ans =
SubInt
11-77
11 Building on Other Classes
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 character string, the inheritance
of objects does not affect the result of the string 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 contain the names of built-in types accepted by your function.
• Call class and strcmp to test for specific types in a MATLAB control statement.
Suppose you create a MEX-function, myMexFcn, that requires two numeric inputs that
must be of type double or single:
11-78
Determine Array Class
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
11-79
11 Building on Other Classes
Abstract Classes
In this section...
“Abstract Classes” on page 11-80
“Declaring Classes as Abstract” on page 11-81
“Determine If a Class Is Abstract” on page 11-82
“Find Inherited Abstract Properties and Methods” on page 11-83
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 must
implement. Each subclass can implement the concrete properties and methods in a way
that supports their specific requirements.
Abstract classes can define properties and methods that are not abstract, and do not
need to define any abstract members. Abstract classes pass on their concrete members
through inheritance.
11-80
Abstract Classes
A subclass must implement all inherited abstract properties and methods to become a
concrete class. Otherwise, the subclass is itself an abstract class.
• An abstract method
• An abstract property
• The Abstract class attribute
Abstract Methods
• 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
11-81
11 Building on Other Classes
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.
classdef AbsClass
methods(Abstract, Static)
result = absMethodOne
output = absMethodTwo
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
11-82
Abstract Classes
end
For example, suppose you subclass AbsClass, which is described in the “Determine If a
Class Is Abstract” on page 11-82 section:
classdef SubAbsClass < AbsClass
% Failed to implement absMethodOne
% defined as abstract in AbsClass
methods (Static)
function out = absMethodTwo(a,b)
out = a + b;
end
end
end
The SubAbsClass class itself is abstract because it has not implemented the
absMethodOne defined in AbsClass.
11-83
11 Building on Other Classes
Interfaces
In this section...
“Interfaces and Abstract Classes” on page 11-84
“An Interface for Classes Implementing Graphs” on page 11-84
For example, consider a set of classes designed to represent various graphs (for example,
line plots, bar graphs, pie charts, and so on). Suppose 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. Consequently, the way each
class implements the Data property can be different.
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 original interface remains.
In this example, the interface, derived subclasses, and a utility function are contained in
a package folder:
+graphics/graph.m % abstract interface class
11-84
Interfaces
The graph class specifies the following properties, which the subclasses must define:
The graph class names three abstract methods that subclasses must implement. The
graph class also suggests in comments that each subclass constructor must accept the
plot data and property name/property value pairs for all class properties.
The package of classes that derive from the graph abstract class implement the following
behaviors:
11-85
11 Building on Other Classes
The graph class is an abstract class that defines the methods and properties used by the
subclasses. Comments in the abstract class suggest the intended implementation:
classdef graph < handle
% Abstract class for creating data graphs
% Subclass constructor should accept
% the data that is to be plotted and
% property name/property value pairs
properties (SetAccess = protected, GetAccess = protected)
Primitive % HG primitive handle
AxesHandle % Axes handle
end
properties % Public access
Data
end
methods (Abstract)
draw(obj)
% Use a line, surface,
% or patch HG primitive
zoom(obj,factor)
% Change the CameraViewAngle
% for 2D and 3D views
% use camzoom for consistency
updateGraph(obj)
% Called by the set.Data method
% to update the drawing primitive
% whenever the Data property is changed
end
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',...
'Callback',@(src,evnt)zoom(gobj,2),...
'Position',[100 20 60 20]);
end
end
end
The graph 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
11-86
Interfaces
property. However, by defining the set access method that calls an abstract method
(updateGraph, which each subclass must implement), the graph 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's 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 graph, but provides implementations for the abstract methods draw, zoom,
updateGraph, and its own constructor. The base class (graph) and subclass are all
contained in a package (graphics), which you must use to reference the class name:
classdef linegraph < graphics.graph
Adding Properties
The linegraph class implements the interface defined in the graph 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, as well as property
name/property value pairs:
11-87
11 Building on Other Classes
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:
function gobj = draw(gobj)
if isempty(gobj.Data)
error('The linegraph object contains no data')
end
h = line(gobj.Data.x,gobj.Data.y,...
'Color',gobj.LineColor,...
'LineStyle',gobj.LineType);
gobj.Primitive = h;
gobj.AxesHandle = get(h,'Parent');
end
The linegraph zoom method follows the comments in the graph 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”.) 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.
11-88
Interfaces
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 graph class implements the Data property set method. However, the graph class
requires each subclass to define a method called updateGraph, which handles the
update of plot data for the specific drawing primitive used.
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.
11-89
11 Building on Other Classes
11-90
Interfaces
11-91
12
• The full name of the object class, including any package qualifiers
• Values of dynamic properties
• The names and values of all properties, except properties that have their Transient,
Constant, or Dependent attributes set to true
For a description of property attributes, see “Specify Property Attributes” on page 7-5
12-2
Save and Load Process
• Calls the class constructor with no arguments only if the class ConstructOnLoad
attribute is set to true. Otherwise, load does not call the class constructor.
• Assigns the saved property values to the object properties. These assignments result
in calls to property set methods defined by the class (except in the case of Dependent
properties, which are not saved or loaded).
You can use property set methods to ensure that property values are still valid in cases
where the class definition has changed.
In many cases, careful class design can prevent load problems when class definitions
change between saved versions.
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.
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 12-13.
12-3
12 Saving and Loading Objects
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 default value, which
reduces the size of the MAT-file.
For more information on how MATLAB evaluates default value expressions, see
“Defining Default Values” on page 4-12.
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 7-7 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.
12-4
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 as well as 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.
12-5
12 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
12-6
Improve Version Compatibility with Default Values
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.
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 the string 'USA'.
classdef EmployeeInfo
properties
Name
JobTitle
Department
Country = 'USA';
12-7
12 Saving and Loading Objects
end
end
• MATLAB assigns and 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.
12-8
Avoid Property Initialization Order Dependency
Suppose 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.
12-9
12 Saving and Loading Objects
• 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 string
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', ...
'Units ''%s'' is not supported.', newUnits);
end
end
end
end
12-10
Avoid Property Initialization Order Dependency
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
TotalDistance = 0
TripMarker = 0
end
properties(Dependent)
TripDistance
12-11
12 Saving and Loading Objects
end
methods
function distance = get.TripDistance(obj)
distance = obj.TotalDistance - obj.TripMarker;
end
end
end
12-12
Modify the Save and Load Process
In this section...
“When to Modify the Save and Load Process” on page 12-13
“How to Modify the Save and Load Process” on page 12-13
“Implementing saveobj and loadobj Methods” on page 12-14
“Additional Considerations” on page 12-14
“A Typical saveobj and loadobj Pattern” on page 12-15
“Regenerating from Object or struct” on page 12-16
“Related Examples” on page 12-17
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
12-13
12 Saving and Loading Objects
modify the object being loaded or can reconstruct an object from the data saved by your
saveobj method.
Implement the loadobj method as a Static method because loadobj can be called
with a struct or other data type instead of an object of the class.
You can 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 an
array. 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, perhaps saving
data in a struct. In this case, the loadobj method must 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.
12-14
Modify the Save and Load Process
• Subclass objects inherit superclass loadobj and saveobj methods. Therefore, if you
do not implement a loadobj or saveobj method in the most specific class, MATLAB
calls only the inherited methods.
• 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.
12-15
12 Saving and Loading Objects
end
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.
12-16
Modify the Save and Load Process
obj.FuncHandle = fh;
obj.Range = rg;
makeGraph(obj)
end
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
Related Examples
For examples that modify the save and load process, see:
12-17
12 Saving and Loading Objects
Rename Property
Suppose 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.
12-18
Maintain Class Compatibility
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 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
12-19
12 Saving and Loading Objects
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
12-20
Maintain Class Compatibility
methods
function obj = padAccID(obj)
ac = obj.AccountID;
acstr = num2str(ac);
if length(acstr) < 12
obj.AccountID = [acstr,repmat('0',1,12-length(acstr))];
end
end
end
methods (Static)
function obj = loadobj(a)
if isstruct(a)
obj = MyAccount;
obj.AccountID = a.AccountID;
obj = padAccID(obj);
elseif isa(a,'MyAccount')
obj = padAccID(a);
end
end
end
end
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 will add more properties. To provide flexibility,
PhoneBookEntry saves property data in a struct using its saveobj method.
12-21
12 Saving and Loading Objects
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 a number of techniques to enable compatibility:
12-22
Maintain Class Compatibility
• 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
12-23
12 Saving and Loading Objects
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
12-24
Initialize Objects
Initialize Objects
In this section...
“Calling Constructor When Loading Objects” on page 12-25
“Initializing Objects in the loadobj Method” on page 12-25
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.
The LabResults class shares the constructor object initialization steps with the
loadobj method by performing these steps in the assignStatus method.
classdef LabResult
properties
CurrentValue
end
properties (Transient)
Status
12-25
12 Saving and Loading Objects
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:
12-26
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.
12-27
12 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.
12-28
Save and Load Objects from Class Hierarchies
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
12-29
12 Saving and Loading Objects
Restore Listeners
In this section...
“Create Listener with loadobj” on page 12-30
“Use Transient Property to Load Listener” on page 12-30
“Using the BankAccount and AccountManager Classes” on page 12-32
When the AccountBalance property value changes, the listener callback determines the
account status. Important points include:
12-30
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 possble 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
12-31
12 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
Related Information
“Property Attributes”
12-32
Save and Load Dynamic Properties
If the dynamic property has nondefault attribute values, convert the object to a struct
in the saveobj method. Save the dynamic property attribute values in the struct so
that the loadobj method can restore these values.
12-33
12 Saving and Loading Objects
• Store the nondefault dynamic property attributes values for SetAccess and
GetAccess in the struct. The loadobj function restores these values.
methods
function s = saveobj(obj)
metaDynoProp = findprop(obj,'DynoProp');
s.dynamicprops(1).name = metaDynoProp.Name;
s.dynamicprops(1).value = obj.DynoProp;
s.dynamicprops(1).setAccess = metaDynoProp.SetAccess;
s.dynamicprops(1).getAccess = metaDynoProp.GetAccess;
...
end
end
Your loadobj method can add the dynamic property and set the attribute values:
12-34
13
Enumerations
• 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 “Properties with Constant Values” on page 14-2 for more information.
Enumerations
Use enumerations when you want to create a fixed set of names representing a single
type of value. 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 of the mathematical and relational operations that MATLAB defines for those
classes.
13-2
Working with Enumerations
Basic Knowledge
The material presented in this section builds on an understanding of the information
provided in the following sections.
13-3
13 Enumerations
• Underlying value — For enumerations derived from built-in classes, the value
associated with an instance of an enumeration class (that is, an enumeration
member).
Refer to an enumeration member using the class name and the member name:
ClassName.MemberName
today
today =
Tuesday
Default Methods
13-4
Working with Enumerations
WeekDays char eq ne
Equality and inequality methods enable you to use enumeration members in if and
switch statements and other functions that test for equality.
Because you can define enumeration members with descriptive names, conversion to
char is useful. For example:
today = WeekDays.Friday;
['Today is ',char(today)]
ans =
Today is Friday
Suppose you want to 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];
any(today == teamMeetings)
ans =
0
function c = Reminder(day)
% Add error checking here
switch(day)
13-5
13 Enumerations
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 = 'Volley ball night';
end
end
ans =
Obtain information about enumeration classes using the enumeration function. For
example:
enumeration WeekDays
Monday
Tuesday
Wednesday
Thursday
Friday
13-6
Working with Enumerations
ans =
noday = WeekDays.empty;
isenum(noday)
ans =
You can also use the meta.class to determine if a variable’s class is an enumeration
class:
today = WeekDays.Wednesday;
mc = metaclass(today);
mc.Enumeration
ans =
For example, the Bearing class derives from the uint32 built-in class:
13-7
13 Enumerations
a = Bearing.East;
b = uint32(a);
whos
Name Size Bytes Class Attributes
a 1x1 60 Bearing
b 1x1 4 uint32
The uint32 constructor accepts an instance of the subclass Bearing and returns and
object of class uint32.
classdef WeekDays
enumeration
Monday, Tuesday, Wednesday, Thursday, Friday
end
methods
function tf = isMeetingDay(obj)
tf = ~(WeekDays.Tuesday == obj);
end
end
end
today = WeekDays.Tuesday;
today.isMeetingDay
ans =
ans =
13-8
Working with Enumerations
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
13-9
13 Enumerations
See “Mutable (Handle) vs. Immutable (Value) Enumeration Members” on page 13-20
for more information on enumeration classes that define properties.
classdef WeekDays
enumeration
Monday, Tuesday, Wednesday, Thursday, Friday
end
end
clear
ary(5) = WeekDays.Tuesday;
MATLAB must initialize the values of array elements ary(1:4). The default value
of an enumeration class is the first enumeration member defined by the class in the
enumeration block. The result of the assignment to the fifth element of the array ary is,
therefore:
ary
ary =
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:
13-10
Working with Enumerations
For example, the input arguments for the Boolean class are 0 for Boolean.No and 1 for
Boolean.Yes.
classdef Boolean < 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,
n = Boolean.No;
MATLAB passes the member argument only to the first superclass. For example,
suppose Boolean derived from another class:
classdef Boolean < logical & MyBool
enumeration
No (0)
Yes (1)
end
end
Now, the default Boolean constructor behaves as if defined like this function:
function obj = Boolean(val)
obj@logical(val) % Argument passed to first superclass constructor
13-11
13 Enumerations
Note: It is possible to provide a conversion function in any class where the function
is the name of an enumerated class and its purpose is to convert to the enumeration.
It is possible to convert to an instance of an enumerated class (one of the defined set
of members), but it is not possible to make a new instance of the class. See “Default
Converter” on page 13-18 for related information.
• The properties of value-based enumeration classes are immutable. Only the
constructor can assign property values. MATLAB implicitly defines the SetAccess
attributes of all properties defined by value-based enumeration classes as
immutable. You cannot set the SetAccess attribute to any other value.
• All properties inherited by a value-based enumeration class that are not defined as
Constant must have immutable SetAccess.
• The properties of handle-based enumeration classes are mutable. You can set
property values on instances of the enumeration class. See “Mutable (Handle) vs.
Immutable (Value) Enumeration Members” on page 13-20 for more information.
• An enumeration member cannot have the same name as a property, method, or event
defined by the same class.
• Enumerations do not support colon (a:b) operations. For example,
FlowRate.Low:FlowRate.High causes an error even if the FlowRate class derives
from a numeric superclass.
13-12
Working with Enumerations
equality and inequality operations. Therefore, switch, if, and a number of comparison
functions like isequal and ismember work with enumeration members.
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 “Using Enumeration Classes” on page 13-4 and the
“Defining Methods in Enumeration Classes” on page 13-8 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. See
“Restrictions Applied to Enumeration Classes” on page 13-12 for more information.
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.
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
13-13
13 Enumerations
Basic Knowledge
The material presented in this section builds on an understanding of the information
provided in the following sections.
Note: Enumeration classes derived from built-in numeric and logical classes cannot
define properties.
For example, the Results class subclasses the int32 built-in class and associates an
integer value with each of the four enumeration members — First, Second, Third, and
NoPoints.
classdef Results < int32
enumeration
First (100)
Second (50)
Third (10)
NoPoints (0)
end
end
13-14
Enumerations Derived from Built-In Types
Because the enumeration member inherits the methods of the int32 class (not the
colon operator), you can use these enumerations like numeric values (summed, sorted,
averaged, and so on).
isa(Results.Second,'int32')
ans =
For example, use enumeration names instead of numbers to rank two teams:
Team1 = [Results.First, Results.NoPoints, Results.Third, Results.Second];
Team2 = [Results.Second, Results.Third, Results.First, Results.First];
160
mean(Team1)
ans =
40
sort(Team2,'descend')
ans =
ans =
1 0 0 0
sum(Team1) < sum(Team2)
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
13-15
13 Enumerations
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 Boolean.off enumeration member
is No:
a = Boolean.No
a =
No
b = Boolean.off
b =
13-16
Enumerations Derived from Built-In Types
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 = Boolean.Yes
a =
Yes
logical(a)
ans =
The FlowRate enumeration class defines three members, Low, Medium, and High.
13-17
13 Enumerations
setFlow = FlowRate.Medium;
returns an instance that is the result of MATLAB calling the default constructor with the
argument value of 50. MATLAB passes this argument to the first superclass constructor
(int32(50) in this case), which results in an underlying value of 50 as a 32-bit integer
for the FlowRate.Medium member.
setFlow = FlowRate.Medium;
int32(setFlow)
ans =
50
Default Converter
If an enumeration is a subclass of a built-in numeric class, it is possible to convert from
built-in numeric data to the enumeration using the name of the enumeration class. For
example:
a = Boolean(1)
a =
Yes
An enumerated class also accepts enumeration members of its own class as input
arguments:
Boolean(a)
ans =
Yes
Nonscalar inputs to the converter method return an object of the same size:
Boolean([0,1])
ans =
13-18
Enumerations Derived from Built-In Types
No Yes
Boolean.empty
ans =
13-19
13 Enumerations
In this section...
“Basic Knowledge” on page 13-20
“Selecting Handle- or Value-Based Enumerations” on page 13-20
“Value-Based Enumeration Classes” on page 13-20
“Handle-Based Enumeration Classes” on page 13-22
“Using Enumerations to Represent a State” on page 13-25
Basic Knowledge
The material presented in this section builds on an understanding of the information
provided in the following sections.
13-20
Mutable (Handle) vs. Immutable (Value) Enumeration Members
When you create an instance of a value-based enumeration class, this instance is unique
until the class is cleared and reloaded. For example, given the following class:
classdef WeekDays
enumeration
Monday, Tuesday, Wednesday, Thursday, Friday
end
end
a = WeekDays.Monday;
b = WeekDays.Monday;
isequal(a,b)
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
13-21
13 Enumerations
end
enumeration
Red (1, 0, 0)
Green (0, 1, 0)
Blue (0, 0, 1)
end
end
red = Colors.Red;
red.G = 1;
Setting the 'G' property of the 'Colors' class is not allowed.
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:
13-22
Mutable (Handle) vs. Immutable (Value) Enumeration Members
G = 0;
B = 0;
end
methods
function c = HandleColors(r, g, b)
c.R = r; c.G = g; c.B = b;
end
end
enumeration
Red (1, 0, 0)
... % Other colors omitted
end
end
ans =
After setting the value of the R property to .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.8000. The MATLAB
session has only one value for any enumeration member at any given time.
13-23
13 Enumerations
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
Clear the class to reload the definition of the HandleColors class (see clear classes):
clear classes
a = HandleColors.Red;
a.R
ans =
If you do not want to allow reassignment of a given property value, set that property's
SetAccess attribute to immutable.
See “Property Attributes” on page 7-7 for more information about property attributes.
ans =
The property values of a and b are the same, so isequal returns true. However, unlike
nonenumeration handle classes, a and b are the same handle because there is only one
enumeration member. Determine handle equality using == (the handle eq method).
13-24
Mutable (Handle) vs. Immutable (Value) Enumeration Members
>> a == b
ans =
See the handle eq method for information on how isequal and == differ when used
with handles.
classdef MachineState
enumeration
Running
NotRunning
end
end
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.
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
13-25
13 Enumerations
end
end
13-26
Enumerations That Encapsulate Data
Basic Knowledge
The material presented in this section builds on an understanding of the information
provided in the following sections.
Note: Enumeration classes that subclass built-in numeric or logical classes cannot define
or inherit properties. See “Enumerations Derived from Built-In Types” on page 13-14 for
more information on this kind of enumeration class.
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
Suppose you want to use a particular set of colors in all your graphs. You can define
an enumeration class to represent the RGB values of the colors in your 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
13-27
13 Enumerations
methods
function c = Colors(r, g, b)
c.R = r; c.G = g; c.B = b;
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
Suppose you want to specify the new shade of red named Reddish:
a = Colors.Reddish;
a.R
ans =
0.9294
a.G
ans =
0.1412
a.B
ans =
0.1490
Use these values by accessing the enumeration member's properties. For example, the
myPlot function accepts a Colors enumeration member as an input argument and
accesses the RGB values defining the color from the property values.
function h = myPlot(x,y,LineColor)
% Simple plotting function
h = line('XData',x,'YData',y);
r = LineColor.R;
g = LineColor.G;
13-28
Enumerations That Encapsulate Data
b = LineColor.B;
set(h,'Color',[r g b])
end
r = Colors.Reddish;
h = myPlot(1:10,1:10,r);
The Colors class encapsulates the definitions of a standard set of colors. These
definitions can change in the Colors class without affecting functions that use the
Colors enumerations.
Suppose 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 if a car is
painted another color.
The Cars class uses Colors enumerations to specify a finite set of available colors. The
exact definition of any given color can change independently of the Cars class.
13-29
13 Enumerations
if isa(colorobj,'Colors')
obj.Color = colorobj;
else
[~,cls] = enumeration('Colors');
disp('Not an available color')
disp(cls)
end
end
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
13-30
Saving and Loading Enumerations
Basic Knowledge
See the save and load functions and “Save and Load Process” on page 12-2 for general
information on saving and loading objects.
When loading these types of 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.
However, 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 defined by the class.
13-31
13 Enumerations
If there are changes to the enumeration class definition that do not prevent MATLAB
from loading the object (that is, all of 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 is of the built-in
class and 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.
13-32
Saving and Loading Enumerations
13-33
14
Constant Properties
14 Constant Properties
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 (when you first reference a
constant property from that 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:
ClassName.PropName
14-2
Properties with Constant Values
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, and then define the various classes to organize the constants you
want to provide. 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 * ...
(1/AstroConstants.Re - 0.5 * r);
14-3
14 Constant Properties
end
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, first return the handle from the constant
property, and 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);
14-4
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:
ans =
14-5
14 Constant Properties
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
14-6
15
Class Metadata
In this section...
“What Is Class Metadata?” on page 15-2
“The meta Package” on page 15-2
“Metaclass Objects” on page 15-3
Each block in a class definition has an associated metaclass that defines the attributes
for that block. Each attribute corresponds to a property in the metaclass. An instance
of a metaclass has values assigned to each property that correspond to the values of the
attributes of the associated class block.
meta.package
meta.class
meta.property
meta.DynamicProperty
meta.EnumeratedValue
meta.method
meta.event
Each metaclass has properties, methods, and events that contain information about
the class or class component. See meta.package, meta.class, meta.property,
15-2
Class Metadata
Metaclass Objects
Creating Metaclass Objects
You cannot instantiate metaclasses directly by calling the respective class constructor.
Create metaclass objects from class instances or from the class name.
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 of 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.
When you change a class definition, MATLAB reloads the class definition. If instances of
the class exist, MATLAB updates those objects according to the new definition.
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,
15-3
15 Information from Class Metadata
MATLAB deletes the metaclass objects and their handles become invalid. You must
create a new metaclass object after updating the class.
See “Automatic Updates for Modified Classes” on page 4-50 for information on how to
modify and reload classes.
• Obtain a meta.class object from a class definition (using ?) or from a class instance
(using metaclass).
• Use the meta.class properties, methods, and events to obtain information about the
class or class instance from which you obtained the meta.class object. For example,
get other metaclass objects, such as the meta.properties objects defined for each of
the class properties.
See the following sections for examples that show how to use metadata:
15-4
Inspecting Class and Object Metadata
Inspecting a Class
The EmployeeData class is a handle class with two properties, one of which has private
Access and defines a set access method.
classdef EmployeeData < handle
properties
EmployeeName
end
properties (Access = private)
EmployeeNumber
end
methods
function obj = EmployeeData(name,ss)
if nargin > 0
obj.EmployeeName = name;
obj.EmployeeNumber = ss;
end
end
function set.EmployeeName(obj,name)
if ischar(name)
obj.EmployeeName = name;
else
error('Employee name must be a text string')
end
end
end
end
Using the EmployeeData class, create a meta.class object using the ? operator:
mc = ?EmployeeData;
15-5
15 Information from Class Metadata
ans =
handle
The EmployeeData class has only one superclass. For classes having more than one
superclass, a would contain a meta.class object for each superclass. Use an indexed
reference to refer to any particular superclass:
a(1).Name
ans =
handle
Inspecting 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.
mpArray = mc.PropertyList;
The length of mpArray indicates there are two meta.property objects, one for each
property defined by the EmployeeData class:
length(mpArray)
ans =
2
ans =
EmployeeName
The Name property of the meta.property object identifies the class property
represented by that meta.property object.
15-6
Inspecting Class and Object Metadata
classdef WeekDays
enumeration
Monday, Tuesday, Wednesday, Thursday, Friday
end
end
mc = ?WeekDays;
mc.EnumerationMemberList(2).Name
ans =
Tuesday
15-7
15 Information from Class Metadata
Find the object representing employee Nancy Wong and display the name and number by
concatenating the strings:
15-8
Finding 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 class name in string form because class is abstract
mc = meta.class.fromName('ClassName');
% Search list of meta.method objects for those
15-9
15 Information from Class Metadata
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:
Display the names of all containers.Map properties that have public GetAccess:
celldisp(names)
names{1} =
Count
names{2} =
KeyType
names{3} =
ValueType
ans =
15-10
Finding Objects with Specific Values
findobj returns an array of meta.method objects for the static methods. In this case,
isempty returns false, indicating there are static methods defined by this class.
You can 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]
15-11
15 Information from Class Metadata
For example, create a default containers.Map object and use the handle findprop
method to get the meta.property object for the Count property:
mp = findprop(containers.Map,'Count')
mp =
Name: 'Count'
Description: 'Number of pairs in the collection'
DetailedDescription: ''
GetAccess: 'public'
SetAccess: 'private'
Dependent: 1
Constant: 0
Abstract: 0
Transient: 1
Hidden: 0
GetObservable: 0
SetObservable: 0
AbortSet: 0
GetMethod: []
SetMethod: []
DefiningClass: [1x1 meta.class]
The preceding meta.property display shows that the default Map object Count
property has public GetAccess and private SetAccess, is Dependent, and Transient.
See “Table of Property Attributes” on page 7-7 for a list of property attributes.
15-12
Getting Information About Properties
If you are working with a class that is not a handle class, get the meta.property
objects from the meta.class object. All metaclasses are subclasses of the handle class.
Use the metaclass function if you have an instance or the ? operator with the class
name:
mc = ?containers.Map
mc =
Name: 'containers.Map'
Description: 'MATLAB Map Container'
DetailedDescription: 'MATLAB Map Container'
Hidden: 0
Sealed: 0
ConstructOnLoad: 1
HandleCompatible: 1
InferiorClasses: {0x1 cell}
ContainingPackage: [1x1 meta.package]
PropertyList: [4x1 meta.property]
MethodList: [35x1 meta.method]
EventList: [1x1 meta.event]
EnumerationMemberList: [0x1 meta.EnumeratedValue]
SuperclassList: [1x1 meta.class]
mc.PropertyList(1).Name
ans =
Count
The meta.class object contains a meta.property object for hidden properties too.
Compare the result with the properties function, which returns only public properties:
properties('containers.Map')
15-13
15 Information from Class Metadata
Count
KeyType
ValueType
The serialization property is Hidden and has its GetAccess and SetAccess
attributes set to private. Therefore, the properties function does not list it. However,
you can get information about this property from its associated meta.property object
(which is the fourth element in the array of meta.property objects in this case):
mc.PropertyList(4)
ans =
Name: 'serialization'
Description: 'Serialization property.'
DetailedDescription: ''
GetAccess: 'private'
SetAccess: 'private'
Dependent: 0
Constant: 0
Abstract: 0
Transient: 0
Hidden: 1
GetObservable: 0
SetObservable: 0
AbortSet: 0
GetMethod: []
SetMethod: []
DefiningClass: [1x1 meta.class]
Access other metaclass objects directly from the meta.class object properties. For
example, the statement:
mc = ?containers.Map;
ans =
15-14
Getting Information About Properties
meta.class
ans =
meta.property
ans =
[1x1 meta.property]
The Name property of the meta.property object contains a character string that is the
name of the property:
class(mc.PropertyList(1).Name)
ans =
char
ans =
Ct
15-15
15 Information from Class Metadata
15-16
Getting Information About Properties
mapobj = containers.Map({'rose','bicycle'},{'flower','machine'});
findAttrValue(mapobj,'SetAccess','private')
ans =
findAttrValue(mapobj,'GetAccess','public')
ans =
15-17
15 Information from Class Metadata
meta.property Object
Class definitions can specify explicit default values for properties (see “Defining Default
Values” on page 4-12). You can determine if a class defines explicit default values for a
property and what the value of the default is from the property’s meta.property object.
meta.property Data
Obtain the default value of a property from the property's associated meta.property
object. 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:
Name: 'type'
Description: 'Type of error reporting'
DetailedDescription: ''
GetAccess: 'private'
SetAccess: 'private'
Dependent: 0
Constant: 0
Abstract: 0
Transient: 0
Hidden: 0
GetObservable: 1
SetObservable: 1
AbortSet: 0
GetMethod: []
15-18
Find Default Values in Property Metadata
SetMethod: []
HasDefault: 1
DefaultValue: {}
DefiningClass: [1x1 meta.class]
• HasDefault — True if class specifies a default value for the property, false if it
does not.
• DefaultValue — Contains the default value, if the class defines a default value for
the property.
These properties provide a programmatic way to obtain property default values without
reading class definition files. Use these meta.property object properties to obtain
property default values for 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.
2 Testing the logical value of the meta.property HasDefault property to determine
if the property defines a default value. MATLAB returns an error when you query
the DefaultValue property if the class does not define a default value for the
property.
3 Obtaining the default value from the meta.property DefaultValue property if
the HasDefault value is true.
15-19
15 Information from Class Metadata
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:
if mp(k).HasDefault
dv = mp(k).DefaultValue;
end
end
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
“Expressions in Class Definitions” on page 5-8 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.
15-20
Find Default Values in Property Metadata
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.
The class does not explicitly define a default value for Foo. Therefore, attempting to
access the DefaultValue property causes an error:
mc = ?MyFoo;
mp = mc.PropertyList(1);
mp.HasDefault
ans =
dv = mp.DefaultValue;
No default value has been defined for property Foo
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:
15-21
15 Information from Class Metadata
mc = ?MyAbst;
mp = mc.PropertyList(1);
mp.HasDefault
ans =
dv = mp.DefaultValue;
Property Foo is abstract and therefore cannot have a default value.
MyPropEr defines the Foo property default value as an expression that errors.
classdef MyPropEr
properties
Foo = sin(pie/2);
end
end
The meta.property instance for property Foo has a value of true for its HasDefault
property because Foo does have a default value determined by the evaluation of the
expression:
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;
Error using pie
Not enough input arguments.
Querying the default value causes the evaluation of the expression and returns the error.
15-22
Find Default Values in Property Metadata
classdef MyEmptyProp
properties
Foo = [];
end
end
The meta.property instance 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;
dv =
[]
15-23
16
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.
16-2
Methods That Modify Default Behavior
16-3
16 Specializing 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 function. When you call plot with a timeseries object as an input
argument, MATLAB calls the timeseries class method named plot.
Overriding
More About
• “Overloading numel, subsref, and subsasgn” on page 16-5
16-4
Overloading numel, subsref, and subsasgn
You might need to define a numel method to compensate when your class defines a
specialized version of size.
subsref uses the value returned by numel to compute the number of expected output
arguments returned by subsref from subscripted reference (i.e., nargout).
Similarly, subsasgn uses numel to compute the expected number of input arguments to
be assigned using subsasgn (i.e., nargin).
MATLAB determines the value of nargin for an overloaded subsasgn function from
the value returned by numel, plus two (one for the variable to which you are making an
assignment and one for the struct array of subscripts).
If MATLAB produces errors when calling your class's overloaded subsref or subsagn
methods because nargout is wrong for subsref or nargin is wrong for subsasgn,
then you need to overload numel to return a value that is consistent with your
implementation of these indexing functions.
16-5
16 Specializing Object Behavior
• How many outputs to return from subsref in the case of indexed reference
• How many inputs to pass to subsasgn in the case of indexed assignment
When overloading subsref, define the method to return multiple values for the indexed
reference using varargout:
When overloading subsasgn, define the method to accept multiple values for the right
hand side of the indexed assignment:
function A = subsagn(A,S,varargin)
More About
• “Understanding size and numel”
16-6
Concatenation Methods
Concatenation Methods
In this section...
“Default Concatenation” on page 16-7
“Methods to Overload” on page 16-7
Default Concatenation
You can concatenate objects into arrays. For example, suppose 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]
VertArray is a 3-by-1 array of class MyClass. Use the cat function to concatenate
arrays along different dimensions. For example:
ndArray = cat(3,HorArray,HorArray);
Methods to Overload
Overload horzcat, vertcat, and cat to produce specialized behaviors in your class.
You must overload both horzcat and vertcat whenever you want to modify object
concatenation because MATLAB uses both functions for any concatenation operation.
Related Examples
• “Built-In Subclass With Properties”
16-7
16 Specializing Object Behavior
Object Converters
In this section...
“Why Implement a Converter” on page 16-8
“Converters for Package Classes” on page 16-8
“Converters and Subscripted Assignment” on page 16-9
Suppose 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)
16-8
Object Converters
...
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. You
must define package-class converters in the classdef file.
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, 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, then MATLAB software calls the Left-Side class constructor and
passes it to the Right-Side variable.
Related Examples
• “Converter Methods”
16-9
16 Specializing Object Behavior
16-10
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 you create two arrays of numbers (using randi and concatenation).
A = randi(9,3,4)
A =
4 8 5 7
4 2 6 3
7 5 7 7
B = [3 6 9];
Reference and assign elements of either array using index values in parentheses:
B(2) = A(3,4);
B
B =
3 7 9
16-11
16 Specializing Object Behavior
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.
16-12
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, you must implement in your class
method all of 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 that provided by MATLAB by default.
16-13
16 Specializing Object Behavior
calls the built-in subsref function. To call the class-defined subsref method, use:
subsref(obj,substruct('.','Prop'))
For example, suppose 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 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
16-14
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 16-29 for examples of how to
use both built-in and class-modified indexing.
classdef MyPlot
properties (Access = private)
x
y
end
properties
Maximum
Minimum
Average
end
methods
function obj = MyPlot(x,y)
obj.x = x;
obj.y = y;
obj.Maximum = max(y);
obj.Minimum = min(y);
obj.Average = mean(y);
end
function B = subsref(A,S)
switch S(1).type
case '.'
switch S(1).subs
case 'plot'
% Reference to A.x and A.y call built-in subsref
B = plot(A.x,A.y);
otherwise
% Enable dot notation for all properties and methods
16-15
16 Specializing Object Behavior
B = A.(S.subs);
end
end
end
end
end
This subsref enables users to use dot notation to perform an action (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 explicitly code each method and property name because the
otherwise code in the inner switch block handles 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.
Related Examples
• “Indexed Reference” on page 16-17
• “Indexed Assignment” on page 16-21
16-16
Indexed Reference
Indexed Reference
In this section...
“Understanding Indexed Reference” on page 16-17
“Compound Indexed References” on page 16-18
“Writing subsref” on page 16-19
Each of these statements causes a call by MATLAB to the subsref method of the class
of A, or a call to the built-in subsref function, if the class of A does not implement a
subsref method.
The first argument is the object being referenced, A. The second argument, S, is a struct
with two fields:
• S.type is a string containing '()', '{}', or '.' specifying the indexing type used.
• S.subs is a cell array or string containing the actual index or name. A colon used as
an index is passed in the cell array as the string ':'. Ranges specified using a colon
(e.g., 2:5) are expanded to 2 3 4 5.
16-17
16 Specializing Object Behavior
Returning the contents of each cell of S.subs gives the index values for the first
dimension and a string ':' 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 of the
columns in the array.
The default subsref returns the contents of all cell array elements in rows 1 through 4
and all of the columns in the array.
This expression:
A.Name
The default subsref returns the contents of the Name field in the struct array or the
value of the property Name if A is an object with the specified property name.
16-18
Indexed Reference
A(1,2).PropertyName(1:4)
Writing subsref
Your class's subsref method must interpret the indexing expressions passed in by
MATLAB. Any behavior you want your class to support must be implemented by your
subsref. However, your method can call the built-in subsref to handle indexing types
that you do not want to change.
You can use a switch statement to determine the type of indexing used and to obtain
the actual indices. The following three code fragments illustrate how to interpret the
input arguments. In each case, the function must return the value (B) that is returned by
your subsref function.
While braces are used for cell arrays in MATLAB, your subsref method can define its
own meaning for this syntax.
Dot name indexing typically accesses property values. The name can be an arbitrary
string for which you take an arbitrary action:
switch S.type
case '.'
switch S.subs
16-19
16 Specializing Object Behavior
case 'name1'
B = A.name1;
case 'name2'
B = A.name2;
end
end
If the dot name is a method call, passing arguments requires a second level of indexing.
Related Examples
• “Class with Modified Indexing” on page 16-29
• “Redefine Indexed Reference”
16-20
Indexed Assignment
Indexed Assignment
In this section...
“Understanding Indexed Assignment” on page 16-21
“Indexed Assignment to Objects” on page 16-23
“Compound Indexed Assignments” on page 16-23
Each of these statements causes MATLAB to call the subsasgn method of the class of A,
or a call to the built-in function, if the class of A does not implement a subsasgn method.
The first argument, A, is the object being assigned the value in the third argument B.
• S.type is a string containing '()', '{}', or '.' specifying the indexing type used.
• S.subs is a cell array or string containing the actual index or name. A colon used as
an index is passed in the cell array as the string ':'. Ranges specified using a colon
(e.g., 2:5) are expanded to 2 3 4 5.
16-21
16 Specializing Object Behavior
• 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 (e.g., by
calling a converter method, if one exists). 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 a default object of
the class of A and B. For example, empty elements are initialized to zero in the case of
a numeric array or an empty cell ([]) in the case of cell arrays.
A{2,3} = B
S.type ='{}'
S.subs = {2,3}
This expression:
A.Name = B
S.type = '.'
S.subs = 'Name'
16-22
Indexed Assignment
• 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
16-23
16 Specializing Object Behavior
Related Examples
• “Specialize Subscripted Assignment — subsasgn”
16-24
Object end Indexing
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
A(end-1,:)
MATLAB calls the end method defined for the object A using the arguments
ind = end(A,1,2)
These arguments mean the end statement occurs in the first index element and there are
two index elements. The end class method returns the index value for the last element of
the first dimension (from which 1 is subtracted in this case). If your class implements an
end method, ensure that it returns a value appropriate for the class.
16-25
16 Specializing Object Behavior
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.
function ind = end(obj,k,n)
szd = size(obj.Data);
if k < n
ind = szd(k);
else
ind = prod(szd(k:end));
end
end
Related Examples
• “Class with Modified Indexing” on page 16-29
• “Objects In Index Expressions” on page 16-27
16-26
Objects In Index Expressions
Indexing expressions like X(A), where A is an object, cause MATLAB to call the
default 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 callsubsindex.
subsindex must return the value of the object as a zero-based integer index values in
the range 0 to prod(size(X))-1.
16-27
16 Specializing Object Behavior
subsindex Implementation
MATLAB calls the subsindex method defined for the object used as the index. For
example, suppose 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 double format
to be used as an index:
function ind = subsindex(obj)
ind = uint8(obj);
end
Class A can implement a method that returns a numeric value that is stored in a
property:
function ind = subsindex(obj)
ind = obj.ElementPosition;
end
Related Examples
• “Object end Indexing” on page 16-25
16-28
Class with Modified Indexing
Class Description
The class has three properties:
d =
8 9 3 9
9 6 5 2
16-29
16 Specializing Object Behavior
2 1 9 9
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 the 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
This class does not implement a fully robust class. For example, you cannot concatenate
objects into an array without adding other methods, such as horzcat, vertcat, cat,
size, and enhancements to subsref and subsasin. methods.
16-30
Class with Modified Indexing
ans =
And add the functionality to index into the Data property with an expression like this:
obj(2,3)
Redefining '()' indexing means 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 calls the builtin subsref function
for '.' type indexing and defines its own version of '()' type indexing.
16-31
16 Specializing Object Behavior
obj.Data(2,3) = 9;
And add the functionality to assign values to the Data property with an expression like
this:
obj(2,3) = 9;
Like the subsref method, the subsasgn method calls the builtin subsasgn function
for '.' type indexing and defines its own version of '()' type indexing.
The substruct function redefines the index type and index subscripts structure that
MATLAB passes to subsref and subsasgn.
function obj = subsasgn(obj,s,val)
if isempty(s) && isa(val,'MyDataClass')
obj = MyDataClass(val.Data,val.Description);
end
switch s(1).type
case '.'
obj = builtin('subsasgn',obj,s,val);
case '()'
if length(s)<2
if isa(val,'MyDataClass')
error('MyDataClass:subsasgn',...
'Object must be scalar')
elseif isa(val,'double')
% Redefine the struct s to make the call: obj.Data(i)
snew = substruct('.','Data','()',s(1).subs(:));
obj = subsasgn(obj,snew,val);
end
end
case '{}'
error('MyDataClass:subsasgn',...
'Not a supported subscripted assignment')
end
end
16-32
Class with Modified Indexing
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
9 6 9 2
2 1 9 9
obj + 7
ans =
15 16 10 16
16 13 16 9
9 8 16 16
16-33
16 Specializing Object Behavior
MyDataClass.m
This definition for MyDataClass includes the end indexing method discussed in “Object
end Indexing” on page 16-25.
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
16-34
Class with Modified Indexing
function a = double(obj)
a = obj.Data;
end
function c = plus(obj,b)
c = double(obj) + double(b);
end
16-35
16 Specializing Object Behavior
Related Examples
• “Object end Indexing” on page 16-25
• “Built-In Subclass With Properties”
16-36
Class Operator Implementations
Defining Operators
You can implement MATLAB operators (+, *, >, etc.) to work with objects of your class.
Do this by defining the associated class methods.
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.
User-defined classes have a higher precedence than built-in classes. For example, if
q is an object of class double and p is a user-defined class, MyClass, both of these
expressions:
q + p
p + q
generate a call to the plus method in the MyClass, if it exists. Whether this method can
add objects of class double and class MyClass depends on how you implement it.
When p and q are objects of different classes, MATLAB applies the rules of precedence to
determine which method to use.
16-37
16 Specializing Object Behavior
a:b colon(a,b)
a' ctranspose(a) Complex conjugate transpose
a.' transpose(a) Matrix transpose
command window output display(a) Display method
[a b] horzcat(a,b,...) Horizontal concatenation
[a; b] vertcat(a,b,...) Vertical concatenation
16-38
Class Operator Implementations
Related Examples
• “Define Arithmetic Operators”
16-39
17
In this section...
“Default Object Display” on page 17-2
“CustomDisplay Class” on page 17-3
“Methods for Customizing Object Display” on page 17-3
• 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 method creates the default detailed display. The detailed display adds
these items to the simple display:
See “Class with Default Object Display” on page 17-12 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 7-7). Inherited abstract properties are excluded from
17-2
Custom Display Interface
display. When the object being displayed is scalar, any dynamic properties attached to
the object are also included.
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 class defines three sealed public methods. These methods overload
three MATLAB functions: disp, display, and details. The disp and display
methods behave like the equivalent MATLAB functions, but use the customizations
defined by classes derived from CustomDisplay.
The details method always uses the default detailed object display and does not apply
customizations defined for the class.
The CustomDisplay interface does not allow you to override disp and display.
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.
17-3
17 Customizing Object Display
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:
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.
17-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.
17-5
17 Customizing Object Display
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.
17-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
1 MATLAB determines the class of obj and calls the disp method to display the
object.
2 disp calls size to determine if obj is scalar or nonscalar
3 When obj is a scalar handle object, disp calls isvalid to determine if obj is the
handle of a deleted object. Deleted handles in nonscalar arrays do not affect the
display.
4 disp calls the state handler method for an object of the state of obj. In this case,
obj is a valid scalar that results in a call to:
displayScalarObject(obj)
5 displayScalarObject calls the display part-builder methods to provide the
respective header, property list, and footer.
...
header = getHeader(obj);
disp(header)
...
groups = getPropertyGroups(obj)
displayPropertyGroups(obj,groups)
...
footer = getFooter
17-7
17 Customizing Object Display
disp(footer)
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.
17-8
Role of size Function in Custom Displays
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.
17-9
17 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 = getHeader@matlab.mixin.CustomDisplay(obj);
end
function displayNonScalarObject(obj)
displayNonScalarObject@matlab.mixin.CustomDisplay(obj);
end
function displayScalarObject(obj)
% Override of this method
% ...
end
function displayEmptyObject(obj)
displayEmptyObject@matlab.mixin.CustomDisplay(obj);
17-10
Customize Display for Heterogeneous Arrays
end
function displayScalarHandleToDeletedObject(obj)
displayScalarHandleToDeletedObject@matlab.mixin.CustomDisplay(obj);
end
end
end
17-11
17 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).
17-12
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 =
17-13
17 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
17-14
Class with Default Object Display
Department
Salary
Password
>> isscalar(emt)
ans =
Note: isvalid is a handle class method. Calling isvalid on a value class object causes
an error.
17-15
17 Customizing Object Display
In general, if you are making small changes to the default layout, then override the
relevant part builder methods (“Part Builder Methods” on page 17-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 17-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 17-6) to build your own
display strings using parts from the default display
• Call a part builder method to get the default string for that particular part of the
display
• Implement a completely different display for scalar objects.
Once you override any CustomDisplay method, your override is called in all cases
where the superclass method would have been called. For example, if you override the
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 17-8)
17-16
Choose a Technique for Display Customization
Use a nonstandard layout for scalar object display that is fully defined in the
displayScalarObject method:
classdef MyClass < matlab.mixin.CustomDisplay
...
methods (Access = protected)
function displayScalarObject(obj)
% Implement the custom display for scalar obj
end
end
end
Use standard display layout, but create a custom property list for scalar and nonscalar
display:
classdef MyClass < matlab.mixin.CustomDisplay
...
methods(Access = protected)
function groups = getPropertyGroups(obj)
% Return PropertyGroup instances
end
end
end
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
Prop2
Prop3
end
methods(Access = protected)
function groups = getPropertyGroups(obj)
17-17
17 Customizing Object Display
if isscalar(obj)
% Scalar case: change order
propList = {'Prop2','Prop1','Prop3'};
groups = matlab.mixin.util.PropertyGroup(propList)
else
% Nonscalar case: call superclass method
groups = getPropertyGroups@matlab.mixin.CustomDisplay(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 = getPropertyGroups@matlab.mixin.CustomDisplay(obj);
end
end
end
end
17-18
Customize Property Display
In this section...
“Change the Property Order” on page 17-19
“Change the Values Displayed for Properties” on page 17-20
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
When you create a PropertyGroup object using a cell array of property names,
MATLAB automatically
17-19
17 Customizing Object Display
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 string.
• Displays the string 'Not Available' for the Salary property.
methods (Access = protected)
function propgrp = getPropertyGroups(obj)
if ~isscalar(obj)
propgrp = getPropertyGroups@matlab.mixin.CustomDisplay(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
17-20
Customize Property Display
17-21
17 Customizing Object Display
In this section...
“Design of Custom Display” on page 17-22
“getHeader Method Override” on page 17-24
“getPropertyGroups Override” on page 17-25
“getFooter Override” on page 17-25
Note: This example uses the EmployeeInfo class described in the “Class with Default
Object Display” on page 17-12 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.
Emp123 =
17-22
Customize Header, Property List, and Footer
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
Emp123 =
17-23
17 Customizing Object Display
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 a linked class name string, 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 = getHeader@matlab.mixin.CustomDisplay(obj);
else
className = matlab.mixin.CustomDisplay.getClassNameForHeader(obj);
newHeader = [className,' Dept: ',obj.Department];
header = sprintf('%s\n',newHeader);
end
end
end
17-24
Customize Header, Property List, and Footer
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 string. 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 string.
17-25
17 Customizing Object Display
17-26
Customize Header, Property List, and Footer
end
17-27
17 Customizing Object Display
In this section...
“Design Of Custom Display” on page 17-28
“displayScalarObject Method Override” on page 17-29
“getPropertyGroups Override” on page 17-30
Note: This example uses the EmployeeInfo class described in the “Class with Default
Object Display” on page 17-12 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'
Personal Info
Salary: 'Level: 10'
17-28
Customize Display of Scalar Objects
Password: '*******'
Implementation
This implementation:
17-29
17 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.
17-30
Customize Display of Scalar Objects
end
end
17-31
17 Customizing Object Display
In this section...
“Design of Custom Display” on page 17-32
“The displayNonScalarObject Override” on page 17-33
“The displayEmptyObject Override” on page 17-34
Note: This example uses the EmployeeInfo class described in the “Class with Default
Object Display” on page 17-12 section.
2. Employee:
Name: 'Alice Blackwell'
Department: 'QE'
3. Employee:
Name: 'Nancy Green'
Department: 'Documentation'
17-32
Customize Display of Object Arrays
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:
• Detects handles to deleted objects (using the isvalid handle class method). Uses
getDeletedHandleText and getClassNameForHeader to build a string 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
• Uses the displayPropertyGroups static method to generate the property display
for valid objects.
17-33
17 Customizing Object Display
17-34
Customize Display of Object Arrays
end
Empt =
17-35
17 Customizing Object Display
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
17-36
Overload the disp Function
Display Methods
Subclassing matlab.mixin.CustomDisplay is the best approach to customizing object
display. However, if you do not derive your class from CustomDisplay, you can overload
the disp function to change how MATLAB displays objects of your class.
If the variable that is being displayed is an object of a class that overloads disp, then
MATLAB always calls the overloaded method. Overload disp or disp and display to
customize the display of objects. Overloading only display is not sufficient to properly
implement a custom display for your class.
17-37
17 Customizing Object Display
• 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 =.
For empty built-in types (numeric types, char, struct, and cell) the display function
displays:
17-38
18
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.
18-2
Class Design for Polynomials
The following table summarizes the methods for the DocPolynom class.
Name Description
DocPolynom Class constructor
double Converts a DocPolynom object to a double (i.e., returns its
coefficients in a vector)
char Creates a formatted display of the DocPolynom object as powers
of x and is used by the disp method
disp Determines how MATLAB displays a DocPolynom objects on the
command line
subsref Enables you to specify a value for the independent variable as a
subscript, access the coef property with dot notation, and call
methods with dot notation.
plus Implements addition of DocPolynom objects
minus Implements subtraction of DocPolynom objects
mtimes Implements multiplication of DocPolynom objects
p1 = DocPolynom([1 0 -2 -5])
p1 =
x^3 - 2*x - 5
p2 = DocPolynom([2 0 3 2 -7])
18-3
18 Implementing a Class for Polynomials
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 =
18-4
Class Design for Polynomials
18-5
18 Implementing a Class for Polynomials
18-6
Class Design for Polynomials
18-7
18 Implementing a Class for Polynomials
18-8
Class Design for Polynomials
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 for classdef.
end
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)
18-9
18 Implementing a Class for Polynomials
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
18-10
Class Design for Polynomials
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);
18-11
18 Implementing a Class for Polynomials
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);
18-12
Class Design for Polynomials
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
18-13
18 Implementing a Class for Polynomials
• 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 18-14 for a description of the property set method.
This statement creates an instance of the DocPolynom class with the specified
coefficients. Note 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);
18-14
Class Design for Polynomials
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
the statement:
c = double(p)
returns:
c=
1 0 -2 -5
18-15
18 Implementing a Class for Polynomials
The char method produces a character string that represents the polynomial displayed
as powers of x. The string returned is a syntactically correct MATLAB expression.
The char method uses a cell array to collect the string components that make up the
displayed polynomial.
The disp method uses char 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.
18-16
Class Design for Polynomials
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 string 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])
creates a DocPolynom object. Because the statement is not terminated with a semicolon,
the resulting output is displayed on the command line:
p =
18-17
18 Implementing a Class for Polynomials
x^3 - 2*x - 5
p =
x^3 - 2*x - 5
y = x^3 - 2*x - 5
16 = f(x = 3)
110 = f(x = 5)
706 = f(x = 9)
18-18
Class Design for Polynomials
causes an evaluation of the polynomial with the value of the independent variable equal
to the subscript.
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.
18-19
18 Implementing a Class for Polynomials
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;
case 'disp'
disp(a)
otherwise
18-20
Class Design for Polynomials
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)
obj1 = DocPolynom(obj1);
obj2 = DocPolynom(obj2);
k = length(obj2.coef) - length(obj1.coef);
18-21
18 Implementing a Class for Polynomials
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:
methods
function r = mtimes(obj1,obj2)
18-22
Class Design for Polynomials
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
18-23
19
The DocAsset class holds the data that is common to all of the specialized asset
subclasses in class properties. The subclasses inherit the super class properties in
addition to defining their own properties. The subclasses are all kinds of assets.
19-2
A Simple Class Hierarchy
The following diagram shows the properties defined for the classes of assets.
DocAsset
Properties
Description
Date
Type
CurrentValue
The DocStock, DocBond, and DocSavings classes inherit properties from the DocAsset
class. In this example, the DocAsset class provides storage for data common to all
subclasses and shares methods with these subclasses.
• Constructor
19-3
19 Designing Related Classes
To use the class, create a folder named @DocAsset and save the class code as
DocAsset.m in this folder. The parent folder of @DocAsset must be on the MATLAB
path.
The following table summarizes the properties defined for the DocAsset class.
The following table summarizes the methods for the DocAsset class.
19-4
A Simple Class Hierarchy
• Description — A character string that describes the particular asset (e.g., stock
name, savings bank name, bond issuer, and so on).
• Date — The date the object was created. This property's set access is private so that
only the constructor assigns the value using the date command when creating the
object.
• Type — The type of asset (e.g., savings, bond, stock). A local set function provides
error checking whenever an object is created.
• CurrentValue — The current value of the asset.
The following code block shows how the properties are defined. Note the set function
defined for the Type property. It restricts the property's values to one of three strings:
bond, stock, or savings.
properties
Description = '';
CurrentValue = 0;
end
properties(SetAccess = private)
Date % Set value in constructor
Type = 'savings'; % Provide a default value
end
The DocAsset class is not derived from another class, so you do not need to call a
superclass constructor. MATLAB constructs an object when you assign values to the
specified output argument (a in the following code):
function a = DocAsset(description,type,current_value)
% DocAsset constructor
if nargin > 0
a.Description = description;
a.Date = date;
a.Type = type;
19-5
19 Designing Related Classes
a.CurrentValue = current_value;
end
end % DocAsset
In this class design, there are only three types of assets—bonds, stocks, and savings.
Therefore, the possible values for the Type property are restricted to one of three possible
stings by defining a set function as follows:
function obj = set.Type(obj,type)
if ~(strcmpi(type,'bond') || strcmpi(type,'stock') || strcmpi(type,'savings'))
error('Type must be either bond, stock, or savings')
end
obj.Type = type;
end %Type set function
The MATLAB runtime calls this function whenever an attempt is made to set the Type
property, even from within the class constructor function or by assigning an initial value.
Therefore, the following statement in the class definition would produce an error:
properties
Type = 'cash';
end
The only exception is the set.Type function itself, where the statement:
obj.Type = type;
The DocAsset subclass display methods can now call this method to display the data
stored in the parent class. This approach isolates the subclass disp methods from
changes to the DocAsset class.
19-6
A Simple Class Hierarchy
To use the class, create a folder named @DocStock and save the class code as
DocStock.m in this folder. The parent folder of @DocStock must be on the MATLAB
path.
The following table summarizes the properties defined for the DocStock class.
19-7
19 Designing Related Classes
The following table summarizes the methods for the DocStock class.
Name Description
DocStock Class constructor
disp Displays information about the object
The < symbol specifies the DocAsset class as the base class for the DocStock class in
the classdef line:
properties
NumShares = 0;
SharePrice = 0;
end
Suppose you want to create a record of a stock asset for 200 shares of a company called
Xdotcom with a share price of $23.47.
19-8
A Simple Class Hierarchy
XdotcomStock = DocStock('Xdotcom',200,23.47);
creates a DocStock object, XdotcomStock, that contains information about a stock asset
in Xdotcom Corp. The asset consists of 200 shares that have a per share value of $23.47.
The constructor first creates an instance of a DocAsset object since the DocStock class
is derived from the DocAsset class (see “The DocAsset Constructor Method” on page
19-5). The constructor returns the DocStock object after setting value for its two
properties:
function s = DocStock(description,num_shares,share_price)
if nargin ~= 3 % Support no argument constructor syntax
description = '';
num_shares = 0;
share_price = 0;
end
s = s@DocAsset(description,'stock',share_price*num_shares);
s.NumShares = num_shares;
s.SharePrice = share_price;
end % DocStock
XdotcomStock = DocStock('Xdotcom',100,25)
the MATLAB runtime looks for a method in the @DocStock folder called disp. The disp
method for the DocStock class produces this output:
Description: Xdotcom
Date: 17-Nov-1998
Type: stock
Current Value: $2500.00
Number of shares: 100
Share price: $25.00
The following function is the DocStock disp method. When this function returns from
the call to the DocAsset disp method, it uses fprintf to display the Numshares and
SharePrice property values on the screen:
19-9
19 Designing Related Classes
function disp(s)
disp@DocAsset(s)
fprintf('Number of shares: %g\nShare price: %3.2f\n',...
s.NumShares,s.SharePrice);
end % disp
To use the class, create a folder named @DocBond and save the class code as DocBond.m
in this folder. The parent folder of @DocBond must be on the MATLAB path.
The following table summarize the properties defined for the DocBond class
19-10
A Simple Class Hierarchy
The following table summarizes the methods for the DocStock class.
Name Description
DocBond Class constructor
disp Displays information about this object and calls the
DocAsset disp method
calc_value Utility function to calculate the bond's current value
The < symbol specifies the DocAsset class as the base class for the DocBond class in the
classdef line:
The following code block shows how the properties are defined:
properties
FaceValue = 0;
Yield = 0;
CurrentBondYield = 0;
end
Suppose you want to create a record of an asset that consists of an xyzbond with a face
value of $100 and a current yield of 4.3%. The current yield for the equivalent bonds
today is 6.2%, which means that the market value of this particular bond is less than its
face value.
19-11
19 Designing Related Classes
creates a DocBond object, b, that contains information about a bond asset xyzbond with
a face value of $100, a yield of 4.3%, and also contains information about the current
yield of such bonds (6.2% in this case) that is used to calculate the current value.
Note The calculations performed in this example are intended only to illustrate the use
of MATLAB classes and do not represent a way to determine the actual value of any
monetary investment.
The DocBond constructor method requires four arguments. It also supports the no
argument syntax by defining default values for the missing input arguments:
function b = DocBond(description,face_value,yield,current_yield)
if nargin ~= 4
description = '';
face_value = 0;
yield = 0;
current_yield = 0;
end
market_value = DocBond.calc_value(face_value,yield,current_yield);
b = b@DocAsset(description,'bond',market_value);
b.FaceValue = face_value;
b.Yield = yield;
b.CurrentBondYield = current_yield;
end % DocBond
The DocBond class determines the market value of bond assets using a simple formula
that scales the face value by the ratio of the bond's interest yield to the current yield for
equivalent bonds.
19-12
A Simple Class Hierarchy
Calculation of the asset's market value requires that the yields be nonzero, and should be
positive just to make sense. While the calc_value method issues no errors for bad yield
values, it does ensure bad values are not used in the calculation of market value.
The asset's market value is passed to the DocAsset base-class constructor when it is
called within the DocBond constructor. calc_value has its Static attribute set to
true because it does not accept a DocBond object as an input argument. The output of
calc_value is used by the base-class (DocAsset) constructor:
methods (Static)
function market_value = calc_value(face_value,yield,current_yield)
if current_yield <= 0 || yield <= 0
market_value = face_value;
else
market_value = face_value*yield/current_yield;
end
end % calc_value
end % methods
the MATLAB runtime looks for a method in the @DocBond folder called disp. The disp
method for the DocBond class produces this output:
Description: xyzbond
Date: 17-Nov-1998
Type: bond
Current Value: $69.35
Face value of bonds: $100
Yield: 4.30%
The following function is the DocBond disp method. When this function returns from
the call to the DocAsset disp method, it uses fprintf to display the FaceValue,
Yield, and CurrentValue property values on the screen:
function disp(b)
disp@DocAsset(b) % Call DocAsset disp method
fprintf('Face value of bonds: $%g\nYield: %3.2f%%\n',...
b.FaceValue,b.Yield);
end % disp
19-13
19 Designing Related Classes
To use the class, create a folder named @DocSavings and save the class code as
DocSavings.m in this folder. The parent folder of @DocSavings must be on the
MATLAB path.
The following table summarizes the properties defined for the DocSavings class.
19-14
A Simple Class Hierarchy
The following table summarizes the methods for the DocSavings class.
Name Description
DocSavings Class constructor
disp Displays information about this object and calls the
DocAsset disp method
The < symbol specifies the DocAsset class as the base class for the DocBond class in the
classdef line:
properties
InterestRate = 0;
end
Suppose you want to create a record of an asset that consists of a savings account with a
current balance of $1000 and an interest rate of 2.9%.
sv = DocSavings('MyBank',1000,2.9);
creates a DocSavings object, sv, that contains information about an account in MyBank
with a balance of $1000 and an interest rate of 2.9%.
19-15
19 Designing Related Classes
The savings account interest rate is saved in the DocSavings class InterestRate
property. The asset description and the current value (account balance) are saved in the
inherited DocAsset object properties.
The constructor calls the base class constructor (DocAsset.m) to create an instance
of the object. It then assigns a value to the InterestRate property. The constructor
supports the no argument syntax by providing default values for the missing arguments.
function s = DocSavings(description,balance,interest_rate)
if nargin ~= 3
description = '';
balance = 0;
interest_rate = 0;
end
s = s@DocAsset(description,'savings',balance);
s.InterestRate = interest_rate;
end % DocSavings
sv = DocSavings('MyBank',1000,2.9)
the MATLAB runtime looks for a method in the @DocSavings folder called disp. The
disp method for the DocSavings class produces this output:
Description: MyBank
Date: 17-Nov-1998
Type: savings
Current Value: $1000.00
Interest Rate: 2.90%
The following function is the DocSaving disp method. When this function returns from
the call to the DocAsset disp method, it uses fprintf to display the Numshares and
SharePrice property values on the screen:
function disp(b)
disp@DocAsset(b) % Call DocAsset disp method
fprintf('%s%3.2f%%\n','Interest Rate: ',s.InterestRate);
end % disp
19-16
A Simple Class Hierarchy
% Class methods
methods
function a = DocAsset(description,type,current_value)
% DocAsset Constructor function
if nargin > 0
a.Description = description;
a.Date = date;
a.Type = type;
a.CurrentValue = current_value;
end
end % DocAsset
function disp(a)
% Display a DocAsset object
fprintf('Description: %s\nDate: %s\nType: %s\nCurrent Value: $%4.2f\n',...
a.Description,a.Date,a.Type,a.CurrentValue);
end % disp
end % classdef
properties
NumShares = 0;
SharePrice = 0;
end
methods
function s = DocStock(description, num_shares, share_price)
if nargin ~= 3
19-17
19 Designing Related Classes
description = '';
num_shares = 0;
share_price = 0;
end
s = s@DocAsset(description, 'stock', share_price*num_shares);
s.NumShares = num_shares;
s.SharePrice = share_price;
end
function disp(s)
disp@DocAsset(s)
fprintf('Number of shares: %g\nShare price: $%2.2f\n',...
s.NumShares,s.SharePrice);
end
end
end
properties
FaceValue = 0;
Yield = 0;
CurrentBondYield = 0;
end
methods
function b = DocBond(description,face_value,yield,current_yield)
if nargin ~= 4
description = '';
face_value = 0;
yield = 0;
current_yield = 0;
end
market_value = DocBond.calc_value(face_value,yield,current_yield);
b = b@DocAsset(description,'bond',market_value);
b.FaceValue = face_value;
b.Yield = yield;
b.CurrentBondYield = current_yield;
end
function disp(b)
disp@DocAsset(b)
fprintf('Face value of bonds: $%g\nYield: %3.2f%%\n',...
b.FaceValue,b.Yield);
end
end
19-18
A Simple Class Hierarchy
else
market_value = face_value*yield/current_yield;
end
end
end
end
properties
InterestRate = 0;
end
methods
function s = DocSavings(description,balance,interest_rate)
if nargin ~= 3
description = '';
balance = 0;
interest_rate = 0;
end
s = s@DocAsset(description,'savings',balance);
s.InterestRate = interest_rate;
end
function disp(s)
disp@DocAsset(s)
fprintf('%s%3.2f%%\n','Interest Rate: ',s.InterestRate);
end
end
end
19-19
19 Designing Related Classes
Kinds of Containment
Aggregation is the containment of objects by other objects. The basic relationship is that
each contained object "is a part of" the container object. Composition is a more strict form
of aggregation in which the contained objects are parts of the containing object and are
not associated with any other objects. Portfolio objects form a composition with asset
objects because the asset objects are value classes, which are copied when the constructor
method creates the DocPortfolio object.
For example, consider a financial portfolio class as a container for a set of assets (stocks,
bonds, savings, and so on). It can group, analyze, and return useful information about
the individual assets. The contained objects are not accessible directly, but only via the
portfolio class methods.
“A Simple Class Hierarchy” on page 19-2 provides information about the assets collected
by this portfolio class.
19-20
Containing Assets in a Portfolio
To use the class, create a folder named @DocPortfolio and save the class code as
DocPortfolio.m in this folder. The parent folder of @DocPortfolio must be on the
MATLAB path.
The following table summarizes the properties defined for the DocPortfolio class.
The following table summarizes the methods for the DocPortfolio class.
19-21
19 Designing Related Classes
The following code block shows how the properties are defined:
properties
Name = '';
end
properties (SetAccess = private)
IndAssets = {};
TotalValue = 0;
end
• Name — Stores the name of the client as a character string. The client's name is
passed to the constructor as an input argument.
• IndAsset — A cell array that stores asset objects (i.e., DocStock, DocBond,
and DocSavings objects). These asset objects are passed to the DocPortfolio
constructor as input arguments and assigned to the property from within the
constructor function.
• IndAsset — The structure of this property is known only to DocPortfolio class
member functions so the property's SetAccess attribute is set to private.
• TotalValue — Stores the total value of the client's assets. The class constructor
determines the value of each asset by querying the asset's CurrentValue property
and summing the result. Access to the TotalValue property is restricted to
DocPortfolio class member functions by setting the property's SetAccess
attribute to private.
The DocPortfolio class is designed to provide information about the financial assets
owned by a client. There are three possible types of assets that a client can own: stocks,
bonds, and savings accounts.
The first step is to create an asset object to represent each type of asset owned by the
client:
19-22
Containing Assets in a Portfolio
XYZStock,...
SaveAccount,...
USTBonds)
VictoriaSelna =
“The DocPortfolio pie3 Method” on page 19-24 provides a graphical display of the
portfolio.
The IndAssets property is a cell array used to store all asset objects. From these
objects, the constructor determines the total value of the client's assets. This value is
stored in the TotalValue property:
function p = DocPortfolio(name,varargin)
19-23
19 Designing Related Classes
if nargin > 0
p.Name = name;
for k = 1:length(varargin)
p.IndAssets{k} = varargin(k);
asset_value = p.IndAssets{k}{1}.CurrentValue;
p.TotalValue = p.TotalValue + asset_value;
end
end
end % DocPortfolio
function disp(p)
fprintf('\nAssets for Client: %s\n',p.Name);
for k = 1:length(p.IndAssets)
disp(p.IndAssets{k}{1}) % Dispatch to corresponding disp
end
fprintf('\nTotal Value: $%0.2f\n',p.TotalValue);
end % disp
19-24
Containing Assets in a Portfolio
label(k) = {'Stocks'};
pie_vector(k) = stock_amt;
k = k + 1;
end % if
if bond_amt ~= 0
label(k) = {'Bonds'};
pie_vector(k) = bond_amt;
k = k + 1;
end % if
if savings_amt ~= 0
label(k) = {'Savings'};
pie_vector(k) = savings_amt;
end % if
• Step 1 — Get the CurrentValue property of each contained asset object and
determine the total value in each category.
• Step 2 — Create the pie chart labels and build a vector of graph data, depending on
which objects are present in the portfolio.
• Step 3 — Call the MATLAB pie3 function, make some font and colormap
adjustments, and add a title.
Visualizing a Portfolio
You can use a DocPortfolio object to present an individual's financial portfolio. For
example, given the following assets:
XYZStock = DocStock('XYZ Stocks',200,12.34);
USTBonds = DocBond('U.S. Treasury Bonds',1600,3.2,2.8);
SaveAccount = DocSavings('MyBank Acc # 123',2000,6);
VictoriaSelna = DocPortfolio('Victoria Selna',...
XYZStock,...
SaveAccount,...
USTBonds);
you can use the class's pie3 method to display the relative mix of assets as a pie chart.
19-25
19 Designing Related Classes
pie3(VictoriaSelna)
properties
Name = '';
end
properties (SetAccess = private)
IndAssets = {};
TotalValue = 0;
end
methods
function p = DocPortfolio(name,varargin)
if nargin > 0
p.Name = name;
for k = 1:length(varargin) % Store objects in a cell array
p.IndAssets{k} = varargin(k);
asset_value = p.IndAssets{k}{1}.CurrentValue;
p.TotalValue = p.TotalValue + asset_value;
end
19-26
Containing Assets in a Portfolio
end
end
function disp(p)
fprintf('\nAssets for Client: %s\n',p.Name);
for k = 1:length(p.IndAssets)
disp(p.IndAssets{k}{1})
end
fprintf('\nTotal Value: $%0.2f\n',p.TotalValue);
end
function pie3(p)
stock_amt = 0; bond_amt = 0; savings_amt = 0;
for k=1:length(p.IndAssets)
if isa(p.IndAssets{k}{1},'DocStock')
stock_amt = stock_amt + p.IndAssets{k}{1}.CurrentValue;
elseif isa(p.IndAssets{k}{1},'DocBond')
bond_amt = bond_amt + p.IndAssets{k}{1}.CurrentValue;
elseif isa(p.IndAssets{k}{1},'DocSavings')
savings_amt = savings_amt + p.IndAssets{k}{1}.CurrentValue;
end
end
i = 1;
if stock_amt ~= 0
label(i) = {'Stocks'};
pie_vector(i) = stock_amt;
i = i +1;
end
if bond_amt ~= 0
label(i) = {'Bonds'};
pie_vector(i) = bond_amt;
i = i +1;
end
if savings_amt ~= 0
label(i) = {'Savings'};
pie_vector(i) = savings_amt;
end
pie3(pie_vector,label)
set(findobj(gca,'Type','Text'),'FontSize',14,'FontWeight','bold')
set(gcf,'Renderer','zbuffer')
colormap prism
stg(1) = {['Portfolio Composition for ',p.Name]};
stg(2) = {['Total Value of Assets: $',num2str(p.TotalValue,'%0.2f')]};
title(stg,'FontSize',10)
end
end
end
19-27