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.

25 line
657B

  1. classdef Oscilloscope < Equipment
  2. %OSCILLOSCOPE Summary of this class goes here
  3. % Detailed explanation goes here
  4. properties
  5. ch1
  6. ch2
  7. end
  8. methods
  9. function obj = Oscilloscope(inputArg1,inputArg2)
  10. %OSCILLOSCOPE Construct an instance of this class
  11. % Detailed explanation goes here
  12. obj.Property1 = inputArg1 + inputArg2;
  13. end
  14. function outputArg = method1(obj,inputArg)
  15. %METHOD1 Summary of this method goes here
  16. % Detailed explanation goes here
  17. outputArg = obj.Property1 + inputArg;
  18. end
  19. end
  20. end