This commit is contained in:
2025-10-18 19:34:07 +02:00
parent 967f691be6
commit 41fa5065a0
12 changed files with 4103 additions and 11768 deletions

16
QAM/old2/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 "red", \
'constellation.dat' using 1:2 with points pt 7 ps 1 lc rgb "blue"
pause 0.15
}