Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

35 linhas
750B

  1. classdef DigitalMultiMeter < Equipment
  2. %DIGITALMULTIMETER Summary of this class goes here
  3. % Detailed explanation goes here
  4. %%
  5. %DC voltage
  6. %Resistance
  7. %DC Current
  8. %Continuity
  9. %Diode test
  10. %DC:DC Ratio
  11. %True RMS AC Voltage
  12. %True RMS AC Current
  13. %Frequency
  14. %Period
  15. properties
  16. end
  17. methods
  18. function dmm = DigitalMultiMeter(ipAddress,port,channel)
  19. dmm@Equipment(ipAddress,port,channel);
  20. end
  21. function outputArg = method1(obj,inputArg)
  22. %METHOD1 Summary of this method goes here
  23. % Detailed explanation goes here
  24. outputArg = obj.Property1 + inputArg;
  25. end
  26. end
  27. end