From df5c875b4b8fd868eaf71cb6073aa7dcf4d5725b Mon Sep 17 00:00:00 2001 From: colaobbl Date: Wed, 16 Apr 2025 11:29:00 +0800 Subject: [PATCH] Wed Apr 16 11:29:00 CST 2025 inscode --- mimi.py | 8 ++++++++ requirements.txt | 0 2 files changed, 8 insertions(+) create mode 100644 mimi.py delete mode 100644 requirements.txt diff --git a/mimi.py b/mimi.py new file mode 100644 index 0000000..b8bfcd4 --- /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 e69de29..0000000 -- GitLab