|
- classdef Trigger
- %TRIGGER Summary of this class goes here
- % Detailed explanation goes here
-
- properties
- mode
- type
- source
- slope
- level
- coupling
- end
-
- methods
- function obj = Trigger(inputArg1,inputArg2)
- %TRIGGER Construct an instance of this class
- % Detailed explanation goes here
- obj.Property1 = inputArg1 + inputArg2;
- end
-
- function outputArg = method1(obj,inputArg)
- %METHOD1 Summary of this method goes here
- % Detailed explanation goes here
- outputArg = obj.Property1 + inputArg;
- end
- end
- end
|