26 lines
668 B
Matlab
26 lines
668 B
Matlab
classdef Electricalsignal < Signal
|
|
%ELECTRICALSIGNAL Summary of this class goes here
|
|
% Detailed explanation goes here
|
|
|
|
properties
|
|
|
|
end
|
|
|
|
methods
|
|
function obj = Electricalsignal(signal)
|
|
%ELECTRICALSIGNAL Construct an instance of this class
|
|
% Detailed explanation goes here
|
|
obj = obj@Signal(signal);
|
|
|
|
end
|
|
|
|
function outputArg = method1(obj,inputArg)
|
|
%METHOD1 Summary of this method goes here
|
|
% Detailed explanation goes here
|
|
outputArg = obj.Property1 + inputArg;
|
|
end
|
|
|
|
end
|
|
end
|
|
|