ソースを参照

added manual and started ddm-class

master
Wouter Horlings 8年前
コミット
305e595364
2個のファイルの変更34行の追加0行の削除
  1. バイナリ
      Manuals/FGen/33500-90901.pdf
  2. +34
    -0
      OOequipment/subfiles/DigitalMultiMeter.m

バイナリ
Manuals/FGen/33500-90901.pdf ファイルの表示


+ 34
- 0
OOequipment/subfiles/DigitalMultiMeter.m ファイルの表示

@@ -0,0 +1,34 @@
classdef DigitalMultiMeter < Equipment
%DIGITALMULTIMETER Summary of this class goes here
% Detailed explanation goes here
%%
%DC voltage
%Resistance
%DC Current
%Continuity
%Diode test
%DC:DC Ratio
%True RMS AC Voltage
%True RMS AC Current
%Frequency
%Period
properties
end
methods
function dmm = DigitalMultiMeter(ipAddress,port,channel)
dmm@Equipment(ipAddress,port,channel);
end
function outputArg = method1(obj,inputArg)
%METHOD1 Summary of this method goes here
% Detailed explanation goes here
outputArg = obj.Property1 + inputArg;
end
end
end


読み込み中…
キャンセル
保存