diff --git a/mimi.py b/mimi.py new file mode 100644 index 0000000000000000000000000000000000000000..b8bfcd49fe4ae2da64f0482ce980020e8641ed4f --- /dev/null +++ b/mimi.py @@ -0,0 +1,8 @@ +# 数据可视化示例(Matplotlib) +x = [10, 30, 50] # UEsPerCell +y_proposed = [78, 72, 65] # Mbps +y_pf = [65, 58, 42] +plt.plot(x, y_proposed, 'o-', label='Proposed') +plt.plot(x, y_pf, 's--', label='PF') +plt.xlabel('UEs per Cell'); plt.ylabel('Throughput (Mbps)') +plt.legend(); plt.grid() \ No newline at end of file diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000