Posts Tagged ‘triggers’
Understanding Code Analyzer Warnings
April 21st, 2010 No Comments Posted in Documents
Syntax Warnings and Property Names
The MATLAB code analyzer helps you optimize your code and avoid syntax errors while you write code. It is useful to understand some of the rules that the Code Analyzer applies in its analysis of class definition code. This understanding helps you avoid situations in which MATLAB allows code that is undesirable. Read More
Matlab Events and Listeners
April 18th, 2010 No Comments Posted in Documents
Specifying Events
To define an event, you declare a name for the event in the events block. Then one of the class methods triggers the event using the notify method, which is method inherited from the handle class. Only classes derived from the handle class can define events. Read More