Panel tags quote the exact full-dataset cosines (0.427/-0.050/0.064)

This commit is contained in:
KiHoLee
2026-08-26 09:20:43 +09:00
parent 97bbfb1617
commit 48f12dea74
2 changed files with 3 additions and 1 deletions
Binary file not shown.
+3 -1
View File
@@ -101,7 +101,9 @@ for s, ca in SCEN.items():
COL = {'OFDMA': '#546E7A', 'SFDMA': '#9C27B0', 'NOMA-SIC': '#E65100',
'UWCA (analytical)': '#1565C0', 'UWCA w/o MAML': '#2E7D32', 'UWCA w/ MAML': '#1565C0'}
fig, ax = plt.subplots(1, 3, figsize=(11, 3.4))
betas = {s: emp_beta(SCEN[s])[~np.eye(U, dtype=bool)].mean() for s in SCEN}
# panel tags quote the exact full-dataset mean pairwise cosines used in
# the manuscript text (0.427, -0.050, 0.064), not a Monte-Carlo resample
betas = {'HIGH': 0.427, 'LOW': -0.050, 'MIX': 0.064}
for j, s in enumerate(['HIGH', 'LOW', 'MIX']):
a = ax[j]
a.plot(SNR, ana[s]['OFDMA'], 's--', color=COL['OFDMA'], lw=2, ms=5, label='OMA')