You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
687B

  1. classdef Trigger
  2. %TRIGGER Summary of this class goes here
  3. % Detailed explanation goes here
  4. properties
  5. mode
  6. type
  7. source
  8. slope
  9. level
  10. coupling
  11. end
  12. methods
  13. function obj = Trigger(inputArg1,inputArg2)
  14. %TRIGGER Construct an instance of this class
  15. % Detailed explanation goes here
  16. obj.Property1 = inputArg1 + inputArg2;
  17. end
  18. function outputArg = method1(obj,inputArg)
  19. %METHOD1 Summary of this method goes here
  20. % Detailed explanation goes here
  21. outputArg = obj.Property1 + inputArg;
  22. end
  23. end
  24. end