- refactored

This commit is contained in:
2022-06-30 13:32:40 +02:00
parent 77cd5261b1
commit 776932e5d1
144 changed files with 0 additions and 38 deletions
+17
View File
@@ -0,0 +1,17 @@
% qam(n)
% Qam
%
function qamTbl=qamTable(n)
startIQ = 1.0/sqrt(2.0)
stepIQ = 2*startIQ/(sqrt(n)-1)
qamTbl = zeros(n,1);
s=1;
for I=-startIQ:stepIQ:startIQ,
for Q=-startIQ:stepIQ:startIQ,
qamTbl(s) = I + i*Q;
s = s + 1;
end;
end;