MATLAB爱好者论坛-LabFans.com

MATLAB爱好者论坛-LabFans.com (https://www.labfans.com/bbs/index.php)
-   MATLAB技术文章 (https://www.labfans.com/bbs/forumdisplay.php?f=25)
-   -   Introduction to Object-Oriented Programming in MATLAB (https://www.labfans.com/bbs/showthread.php?t=2399)

TechnicalArticles 2008-04-18 22:30

Introduction to Object-Oriented Programming in MATLAB
 
By [EMAIL="[email protected]"]Stuart McGarrity[/EMAIL]
[URL="http://www.mathworks.com/products/matlab/object_oriented_programming.html"]Object-oriented programming[/URL] (OO) applies to software development the standard science and engineering practice of identifying patterns and defining a classification system describing those patterns. Classification systems and design patterns allow engineers and scientists to make sense of complex systems and to reuse efforts by others. By applying classification systems and design patterns to programming, the OO approach improves your ability to manage software complexity—particularly important when developing and maintaining large applications and data structures.
This article demonstrates the use of object-oriented techniques in the MATLAB® language to implement a typical technical application. The examples use features available in MATLAB 7.6, part of release 2008a.
[B]Application Example: Analyzing Sensor Array Data[/B]

A sensor array (Figure 1) is a collection of sensors, often arranged in a line, that is used to sample a medium such as air, water, or the ground for radar, sonar, cellular communications, and other applications. By collecting time samples from multiple points in space, you can extract additional information from the medium being sampled.
[IMG]http://www.mathworks.com/company/newsletters/digest/2008/mar/images/ml_fig1.gif[/IMG]
[I]Figure 1. A sensor array detecting two distant electromagnetic sources at unknown angles.[/I]
Our application uses a sensor array to determine the direction of arrival (DOA) of multiple distant electromagnetic sources, such as radio beacons and radar transmitters. In this particular scenario, we will attempt to estimate the angles θ1 and θ2 of the two sources relative to the direction in which the sensor array is pointing.
[B]The Language of Object-Oriented Programming[/B]

When creating software applications, the categories or things that you could represent include physical objects, such as a car or an organism; a virtual entity, such as a financial market; or information, such as a set of test results. In object-oriented programming, these categories are represented as classes. Data elements, or state, are represented as class properties and operations are implemented as class methods.
An object is an instance of a class - when a program executes, the object is created based on its class and behaves in the way defined by the class. The values stored in MATLAB variables all belong to a class. These values include not only what you might normally consider objects, such as a time series or state space object, but also simple doubles.


[B] Classes in MATLAB[/B]

In MATLAB, the class of a variable is displayed in the output of the whos command, together with other variable characteristics. Examples include double, char, int8, struct, and timeseries.
>> a=1;
>> str=’Hello’;
>> whos Name Size Bytes Class Attributes
a 1x1 8 double
tr 1x5 10 char

[B]Reviewing Data Items and Operations[/B]

We will begin by reviewing the data items that we need to represent and the operations that we need to implement.
As with most applications, many pieces of data must be stored and tracked to perform the required operations. In our example, we need to represent the following data:
[LIST][*]Numbers of sensors and samples[*]Sampled sensor data[*]Sensor sample rate[*]Sensor spacing[*]Wavelength of distant sources[*]Speed of wave[*]Sensor data set name or description[/LIST]We will use a simple FFT-based technique to estimate the DOA of the sources. This technique can be broken down into parts and implemented as a collection of operations. A small number of utility operations needs to be implemented to help with development work. For example, we must:
[LIST][*]Create the data set from synthetic data or acquired live data[*]Inspect and modify data set values and parameters[*]Plot the sample data to help with interpretation and validation[*]Calculate and plot the averaged magnitude squared of the FFT (periodogram) of the data set[*]Find the peaks of the periodogram to estimate direction of arrival of the sources[/LIST] We can now determine what to represent with class properties and what to implement with class methods.
[B]Representing Data with Class Properties[/B]

We begin by defining a class to describe the sensor array. This initial representation contains only the data items, representing them as class properties.
You define a class in MATLAB with a class definition file, which contains blocks of code, denoted by keywords and end statements that describe different aspects of the class. The definition file shown in Figure 2 describes a class sads (for sensor array data set), with all the data items that we need to represent listed in a properties block.
[IMG]http://www.mathworks.com/company/newsletters/digest/2008/mar/images/ml_fig2.jpg[/IMG]
[I]Figure 2. Class definition file sads.m with properties.[/I]
[B]Creating an Object and Accessing Properties[/B]

To create an object or instance of the class that we defined, we use the statement
>> s=sads; To set the value of a property, we specify its name just like fields of a structure with
>> s.NumSensors=16; We can display the object, seeing all the available properties and current values, by typing its name.
>> s s =
[COLOR=#0000FF][U]sads[/U][/COLOR]
properties:
NumSensors: 16
NumSamples: []
Data: []
SampleRate: []
Spacing: []
Wavelength: []
c: 300000000
Name: []
[COLOR=#0000FF][U]list of methods[/U][/COLOR] All the properties except NumSensors and c are still empty. By double-clicking the object in the workspace browser, we can inspect or edit the properties using the variable editor just as if they were fields in a structure (Figure 3).
[IMG]http://www.mathworks.com/company/newsletters/digest/2008/mar/images/ml_fig3.gif[/IMG]
[I]Figure 3. Sensor array object listed in workspace browser (left) and open in variable editor (right).[/I]
The data set can now be identified as a sads object using the class and isa functions and the whos command, something that is not possible with structures.
>> class(s) ans =
sads The ability to identify the class of a variable is important to users who create code to operate on the data set, as it lets them determine the available data items to be accessed and operations that can be legally performed.
[B]Error Checking[/B]

If you use structures to represent your data, you could add a new field name at any time simply by specifying a new field name and assigning it a value. This capability is particularly convenient when you are experimenting with and prototyping algorithms. However, if you misspell a field name, a new field will be added silently, which might cause an error later that is difficult to diagnose.
Unlike structures, you cannot arbitrarily add a new property to an object simply by specifying a new property name and assigning it a value. If you misspell an object property name, MATLAB immediately issues an error. This additional level of error checking is useful when the object is being accessed by users who are less familiar with it than the author, common during the development of a large application.
[B]Controlling Access to Data[/B]

Classes give you great control over property access. For example, they let you prohibit modification of a property, hide a property, or cause it to be calculated dynamically. You control access to properties by specifying property attributes in the class definition file.
We expand on the class definition file in Figure 2 by dividing the current list of properties into multiple property blocks, each with unique property attributes: GetAccess, Constant, and Dependent (Figure 4).
[IMG]http://www.mathworks.com/company/newsletters/digest/2008/mar/images/ml_fig4.gif[/IMG]
[I]Figure 4. Class definition file sads.m with property attributes.[/I]
You prohibit modification of a property by setting the Constant attribute. In our example, we will set the speed of light property c to be constant. Because constant properties do not change, they can be accessed simply by referencing the class name.
>> sads.c ans =
300000000 You make a property read-only by setting the SetAccess attribute to private. You can make a property visible only to the methods operating on it by setting the GetAccess attribute to private, as we will do with the Wavelength property.
You can freely change the names or characteristics of a private property without affecting users of the object. This “black box” approach to defining a piece of software, known as encapsulation, prevents the user of the object from becoming dependent on an implementation detail or characteristic that could change and break their code.
You specify that a property is calculated only when asked for by setting its Dependent attribute. You then specify a get method that is automatically called when the property is accessed. See the “Accessing Properties with Get and Set Methods” section of this article for details on how to specify class methods. In our application, we set the NumSensors and NumSamples properties to be dependent.
[B]Implementing Operations with Class Methods[/B]

Methods, or the operations that can be performed on the object, are specified as a list of functions in a methods block. A class can contain many types of methods, each fulfilling a different purpose, each specified differently. The following section describes a number of these types of methods.
We will add a methods block to the sads definition file and add each new method inside this block (Figure 5).
[IMG]http://www.mathworks.com/company/newsletters/digest/2008/mar/images/ml_fig5.jpg[/IMG]
[I]Figure 5. Class definition file sads.m with methods, displayed in the MATLAB editor. For ease of viewing, the code-folding feature is used to hide much of the code.[/I]
[B]Specifying a Constructor Method[/B]

In our example, we will specify a constructor method that lets the user provide parameters to be used in the creation of the object. The constructor method often performs data initialization and validation. The object is now created with
>> s=sads(Data, Wavelength, SampleRate, Spacing, Name); [B]Implementing Application-Specific Methods[/B]

We will add several methods to implement application-specific operations to be performed on the data set. Most methods take the object as an input argument (for example, obj) and access the object properties by referencing this variable (for example, obj.NumSamples), as in this method:
function [mags,fflip]=magfft(obj, zpt)
mag=zeros(obj.NumSamples, zpt);
...
end Although it requires additional syntax, referencing properties via the object variable can help differentiate them from local function variables, like mag above.
[B]Calling Methods[/B]

Methods are called just like functions, with the object(s) passed in as one of the arguments. We call the method that plots the periodogram, (Figure 6) passing in additional required arguments.
[IMG]http://www.mathworks.com/company/newsletters/digest/2008/mar/images/ml_fig6.gif[/IMG]
[I]Figure 6. Plot of periodogram against angle.[/I]
>> magfftplot(s,128) Next, we call the method that performs the main operation of estimating the sources’ DOA.
>> angles=doa(s) angles =
-10.1642 18.9953 The DOA angles match the location of the peaks in Figure 2 and approximate the true locations of the sources shown in Figure 1, which are -10° and 20°.
[B]Accessing Properties with Get and Set Methods[/B]

You can validate properties or implement dependent properties, as mentioned earlier, by specifying associated set and get methods. Here is the get method for the NumSensors property.
function NumSensors=get.NumSensors(obj)
NumSensors=size(obj.Data,2);
end Get and set methods are called automatically when properties are accessed, for example with
>> N=s.NumSensors; [B]Specifying Methods for Existing MATLAB Functions with Overloading [/B]

[I]Overloading[/I] lets you redefine existing MATLAB functions to work on your object by providing a function with that name in your list of methods. You can also overload operators and even indexing by using methods with special names. In our application we will include an overloaded plot method, providing a function to visualize the data set that is familiar to many MATLAB users (Figure 7).
[IMG]http://www.mathworks.com/company/newsletters/digest/2008/mar/images/ml_fig7.gif[/IMG]
[I]Figure 7. Overloaded plot method specialized for the sensor array data set.[/I]
>> plot(s) This customized plot method represents the information in the most appropriate way for this data set, annotating it with all available information. This plot method is executed only on objects for which it has been defined, a much more robust approach than manipulating the order of directories in the path to control which of the multiple functions with the same name are called.
[B]Developing the Application Further[/B]

The class that we created in this example represents our sensor array data set and provides several operations that we can use to analyze the data, including the main direction-finding operation. We can use this class to evaluate the performance of the FFT-based technique in different scenarios.
We could expand the application using additional OO techniques. For example, we could: [LIST][*]Define sub-classes of existing classes (re-using a definition of a broader category to define a more specific sub-category) with inheritance[*]Specify static methods, letting us define an operation for the class as a whole[*]Use handle classes with reference behavior, enabling us to make data structures like linked lists or work with a large data set without copying it[*]Define events and listeners, letting us monitor object properties or actions These techniques enhance our ability to manage complexity by enabling us to further define relationships and behavior in the application.[/LIST]Because it was built using OO techniques, the application is now robust enough for others to use and maintain and can be integrated with related applications throughout an organization.
[B]Object-Oriented Programming Glossary[/B]


[B]Class.[/B] A category or set of objects
[B]Class definition file.[/B] A MATLAB file defining the behavior of a class
[B]Method.[/B] An operation that can be carried out on an object
[B]Object.[/B] An instance of a class, existing in a workspace
[B]Property.[/B] An item of data or state associated with an object

[URL="http://www.mathworks.com/company/newsletters/digest/2008/mar/matlab_oop.html"]更多...[/URL]

dnping 2008-04-21 14:28

谢谢……^_^


所有时间均为北京时间。现在的时间是 14:40

Powered by vBulletin
版权所有 ©2000 - 2025,Jelsoft Enterprises Ltd.