WIP - signal types

This commit is contained in:
Silas Oettinghaus
2023-05-15 16:14:37 +02:00
parent 0086346efd
commit f6b2f3eee9
5 changed files with 52 additions and 17 deletions

View File

@@ -0,0 +1,25 @@
classdef Informationsignal < Signal
%OPTICALSIGNAL Summary of this class goes here
% Detailed explanation goes here
properties
nase
lambda_nm
end
methods
function obj = Informationsignal(signal)
%OPTICALSIGNAL 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