Files
imdd_silas/Classes/00_signals/Informationsignal.m
Silas Oettinghaus 2aeacafe78 Bald fertig für richtige Nutzung - Move_it vergleich fertig
Complete Checkup with Move_it: this framework is an almost perfect reproduction.
2023-06-08 15:33:57 +02:00

28 lines
526 B
Matlab

classdef Informationsignal < Signal
%OPTICALSIGNAL Summary of this class goes here
% Detailed explanation goes here
properties
end
methods
function obj = Informationsignal(signal)
%OPTICALSIGNAL Construct an instance of this class
% Detailed explanation goes here
obj = obj@Signal(signal);
end
function pow = power(obj)
pow = mean(abs(obj.signal),"all") ;
end
end
end