Add AWGN channel models and route IMDD simulation through them

This commit is contained in:
Silas Oettinghaus
2026-03-26 11:23:07 +01:00
parent d3235a5c9c
commit c135cb76b1
7 changed files with 167 additions and 68 deletions

View File

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