qam edits

This commit is contained in:
2025-10-07 13:55:52 +02:00
parent 876d37d1ab
commit 967f691be6
5 changed files with 11803 additions and 76 deletions

16
QAM/plot_const.plt Normal file
View File

@ -0,0 +1,16 @@
set terminal qt size 600,600 title "Diagramme de constellation"
set xlabel "I (In-phase)"
set ylabel "Q (Quadrature)"
set grid
set key off
set pointsize 1.5
set xrange [-5:5]
set yrange [-5:5]
while (1) {
plot \
'constellation_ref.dat' using 1:2 with points pt 7 ps 2.5 lc rgb "yellow", \
'constellation.dat' using 1:2 with points pt 7 ps 1 lc rgb "blue"
pause 0.15
}