Tagged: example

Controlling the Number of Instances

Controlling the Number of Instances 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...

Implementing a Set/Get Interface for Properties

The Standard Set/Get Interface The MATLAB Handle Graphics system implements an interface based on set and get methods. These methods enable you to set or query the value of graphics object properties. The hgsetget...

Finding Handle Objects and Properties

Finding Handle Objects The findobj method enables you to locate handle objects that meet certain conditions. function HM = findobj(H,) The findobj method returns an array of handles matching the conditions specified. Finding Handle...

Comparing Handle and Value Classes

Why Select Handle or Value MATLAB support two kinds of classes — handle classes and value classes. The kind of class you use depends on the desired behavior of the class instances and what...

Specifying Class Precedence

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...

matlab

Scoping Classes with Packages

Matlab Scoping Package Folders Packages are special folders that can contain class folders, function and class definition files, and other packages. Packages define a scope (sometimes called a namespace) for the contents of the...

Matlab Class for Graphing Functions

Matlab Functions Display Fully Commented Example Code 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...