updates of framework

- focus on AWG output power and lowpass characteristics
This commit is contained in:
Silas Oettinghaus
2024-04-26 14:08:21 +02:00
parent 0600abfcbf
commit 7c1d9850d6
25 changed files with 864 additions and 279 deletions

View File

@@ -28,7 +28,7 @@ classdef Informationsignal < Signal
function pow = power(obj)
pow = mean(abs(obj.signal),"all") ;
pow = mean(abs(obj.signal.^2),"all") ;
end