├── .gitignore ├── MIMO ├── MU-MIMO │ ├── block diagonalization.py │ ├── channel inversion.py │ ├── dirty paper coding.py │ └── result │ │ ├── DPC(Nb=4, Nm=1, user=10, select_user=4).png │ │ ├── DPC(Nb=4, Nm=2, user=10, select_user=2).png │ │ ├── block diagonalization(Nb=4, Nm=1, user=10, select_user=4, MMSE detection).png │ │ ├── block diagonalization(Nb=4, Nm=1, user=10, select_user=4, ZF detection).png │ │ ├── block diagonalization(Nb=4, Nm=1, user=20, select_user=4, MMSE detection).png │ │ ├── block diagonalization(Nb=4, Nm=1, user=20, select_user=4, ZF detection).png │ │ ├── block diagonalization(Nb=4, Nm=2, user=10, select_user=2, MMSE detection).png │ │ ├── block diagonalization(Nb=4, Nm=2, user=10, select_user=2, ZF detection).png │ │ ├── block diagonalization(Nb=4, Nm=2, user=20, select_user=2, MMSE detection).png │ │ ├── block diagonalization(Nb=4, Nm=2, user=20, select_user=2, ZF detection).png │ │ ├── channel inversion(Nb=4, Nm=1, user=10, select_user=4).png │ │ ├── channel inversion(Nb=4, Nm=1, user=20, select_user=4).png │ │ ├── channel inversion(Nb=4, Nm=2, user=10, select_user=2).png │ │ └── channel inversion(Nb=4, Nm=2, user=20, select_user=2).png ├── Maximal Ratio Combining(MBC).png ├── Maximal Ratio Combining(MBC).py ├── channel capacity │ ├── ergodic_capacity(optimum antenna selection).py │ ├── ergodic_capacity(sub-optimal antenna selection).py │ ├── ergodic_capacity.py │ ├── ergodic_capacity_CDF.py │ ├── ergodic_capacity_correlation.py │ ├── open-loop & close-loop channel capacity.py │ └── result │ │ ├── ergodic channel capacity (unknown CSI).png │ │ ├── ergodic correlated channel capacity (unknown CSI).png │ │ ├── ergodic_capacity_CDF.png │ │ ├── optimum antenna selection for ergodic channel capacity.png │ │ ├── sub-optimum antenna selection for ergodic channel capacity (ascending order).png │ │ ├── sub-optimum antenna selection for ergodic channel capacity (decending order).png │ │ └── water_filling for known channel.png ├── detection │ ├── ML detection │ │ ├── ML detection.py │ │ ├── data │ │ │ ├── non-normalize │ │ │ │ ├── ML detection for 16QAM (Nt=2, Nr=2).dat │ │ │ │ ├── ML detection for 16QAM (non-normalize)(Nt=2, Nr=2).dat │ │ │ │ ├── ML detection for 64QAM (Nt=2, Nr=2).dat │ │ │ │ ├── ML detection for 64QAM (non-normalize)(Nt=2, Nr=2).dat │ │ │ │ ├── ML detection for BPSK (Nt=2, Nr=2).dat │ │ │ │ ├── ML detection for BPSK (Nt=4, Nr=4).dat │ │ │ │ ├── ML detection for BPSK (non-normalize)(Nt=2, Nr=2).dat │ │ │ │ ├── ML detection for BPSK (non-normalize)(Nt=4, Nr=4).dat │ │ │ │ ├── ML detection for QPSK (Nt=2, Nr=2).dat │ │ │ │ ├── ML detection for QPSK (Nt=4, Nr=4).dat │ │ │ │ ├── ML detection for QPSK (non-normalize)(Nt=2, Nr=2).dat │ │ │ │ └── ML detection for QPSK (non-normalize)(Nt=4, Nr=4).dat │ │ │ └── normalize │ │ │ │ ├── ML detection for 16QAM (normalize)(Nt=2, Nr=2).dat │ │ │ │ ├── ML detection for 16QAM (normalize)(Nt=4, Nr=4).dat │ │ │ │ ├── ML detection for 64QAM (normalize)(Nt=2, Nr=2).dat │ │ │ │ ├── ML detection for 64QAM (normalize)(Nt=4, Nr=4) part2.dat │ │ │ │ ├── ML detection for 64QAM (normalize)(Nt=4, Nr=4).dat │ │ │ │ ├── ML detection for BPSK (normalize)(Nt=2, Nr=2).dat │ │ │ │ ├── ML detection for BPSK (normalize)(Nt=4, Nr=4).dat │ │ │ │ ├── ML detection for QPSK (normalize)(Nt=2, Nr=2) part2.dat │ │ │ │ ├── ML detection for QPSK (normalize)(Nt=2, Nr=2).dat │ │ │ │ └── ML detection for QPSK (normalize)(Nt=4, Nr=4).dat │ │ └── result │ │ │ ├── non-normalize │ │ │ ├── ML detection for 2x2 MIMO (BPSK, QPSK).png │ │ │ ├── ML for 2x2 MIMO detection(16QAM).png │ │ │ ├── ML for 2x2 MIMO detection(64QAM).png │ │ │ ├── ML for 2x2 MIMO detection(BPSK).png │ │ │ ├── ML for 2x2 MIMO detection(QPSK).png │ │ │ ├── ML for 4x4 MIMO detection(BPSK).png │ │ │ └── ML for 4x4 MIMO detection(QPSK).png │ │ │ └── normalize │ │ │ ├── ML for 2x2 MIMO detection(16QAM).png │ │ │ ├── ML for 2x2 MIMO detection(64QAM).png │ │ │ ├── ML for 2x2 MIMO detection(BPSK).png │ │ │ ├── ML for 2x2 MIMO detection(QPSK) part2.png │ │ │ ├── ML for 2x2 MIMO detection(QPSK).png │ │ │ ├── ML for 4x4 MIMO detection(16QAM).png │ │ │ └── ML for 4x4 MIMO detection(QPSK).png │ ├── QRM-MLD method │ │ └── QRM-MLD.py │ ├── SIC detection │ │ ├── MMSE-SIC detection.py │ │ ├── ZF-SIC detection.py │ │ └── result │ │ │ ├── MMSE-SIC、MMSE-SIC-sort for 2x2 MIMO detection(BPSK).png │ │ │ └── ZF-SIC、ZF-SIC-sort for 2x2 MIMO detection(BPSK).png │ ├── ZF and MMSE detection │ │ ├── ZF_MMSE detection with antenna selection.py │ │ ├── ZF_MMSE detection.py │ │ ├── data │ │ │ ├── non-normalize │ │ │ │ ├── MMSE detection for 16QAM (Nt=2, Nr=2).dat │ │ │ │ ├── MMSE detection for 16QAM (Nt=4, Nr=4).dat │ │ │ │ ├── MMSE detection for 64QAM (Nt=2, Nr=2).dat │ │ │ │ ├── MMSE detection for 64QAM (Nt=4, Nr=4).dat │ │ │ │ ├── MMSE detection for BPSK (Nt=2, Nr=2).dat │ │ │ │ ├── MMSE detection for BPSK (Nt=4, Nr=4).dat │ │ │ │ ├── MMSE detection for QPSK (Nt=2, Nr=2).dat │ │ │ │ ├── MMSE detection for QPSK (Nt=4, Nr=4).dat │ │ │ │ ├── README.md │ │ │ │ ├── ZF detection for 16QAM (Nt=2, Nr=2).dat │ │ │ │ ├── ZF detection for 16QAM (Nt=4, Nr=4).dat │ │ │ │ ├── ZF detection for 64QAM (Nt=2, Nr=2).dat │ │ │ │ ├── ZF detection for 64QAM (Nt=4, Nr=4).dat │ │ │ │ ├── ZF detection for BPSK (Nt=2, Nr=2).dat │ │ │ │ ├── ZF detection for BPSK (Nt=4, Nr=4).dat │ │ │ │ ├── ZF detection for QPSK (Nt=2, Nr=2).dat │ │ │ │ └── ZF detection for QPSK (Nt=4, Nr=4).dat │ │ │ └── normalize │ │ │ │ ├── MMSE detection for QPSK (Nt=2, Nr=2).dat │ │ │ │ ├── MMSE detection for QPSK (Nt=4, Nr=4).dat │ │ │ │ ├── ZF detection for QPSK (Nt=2, Nr=2).dat │ │ │ │ └── ZF detection for QPSK (Nt=4, Nr=4).dat │ │ └── result │ │ │ ├── ZF、MMSE for 2x2 MIMO detection(16QAM).png │ │ │ ├── ZF、MMSE for 2x2 MIMO detection(64QAM).png │ │ │ ├── ZF、MMSE for 2x2 MIMO detection(BPSK).png │ │ │ ├── ZF、MMSE for 2x2 MIMO detection(QPSK).png │ │ │ ├── ZF、MMSE for 4x2 MIMO detection(16QAM) with antenna selection.png │ │ │ ├── ZF、MMSE for 4x2 MIMO detection(64QAM) with antenna selection.png │ │ │ ├── ZF、MMSE for 4x2 MIMO detection(BPSK) with antenna selection.png │ │ │ ├── ZF、MMSE for 4x2 MIMO detection(QPSK) with antenna selection.png │ │ │ ├── ZF、MMSE for 4x4 MIMO detection(16QAM).png │ │ │ ├── ZF、MMSE for 4x4 MIMO detection(64QAM).png │ │ │ ├── ZF、MMSE for 4x4 MIMO detection(BPSK).png │ │ │ └── ZF、MMSE for 4x4 MIMO detection(QPSK).png │ ├── gradient search │ │ └── gradient search.py │ └── sphere decoding │ │ ├── data │ │ ├── v2 soft │ │ │ ├── non-normalize │ │ │ │ └── 2x2 │ │ │ │ │ ├── 16QAM │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 1, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 1, BFS, K=3 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 1, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 1, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 1, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 2, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 2, BFS, K=3 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 2, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 2, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 2, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, BFS, K=3 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, BFS, K=5 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=10 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=11 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=3 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=5 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=7 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=9 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for 16QAM, soft = 4, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── 64QAM │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 8, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 8, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 8, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 8, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 8, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for 64QAM, soft = 8, DFS (Nt=2, Nr=2).dat │ │ │ │ │ └── QPSK │ │ │ │ │ ├── sphere decoding for QPSK, soft = 1, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 1, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 1, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 1, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 2, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 2, BFS, K=3 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 2, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 2, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for QPSK, soft = 2, DFS (Nt=2, Nr=2).dat │ │ │ └── normalize │ │ │ │ ├── 2x2 │ │ │ │ ├── 16QAM │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 1, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 1, BFS, K=3 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 1, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 1, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 1, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 2, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 2, BFS, K=3 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 2, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 2, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 2, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, BFS, K=3 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, BFS, K=5 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 3, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=10 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=11 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=3 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=5 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=7 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, BFS, K=9 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft = 4, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for 16QAM, soft = 4, DFS (Nt=2, Nr=2).dat │ │ │ │ ├── 64QAM │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 1, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 2, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 3, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 4, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 5, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 6, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 7, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 8, BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 8, BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 8, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 8, BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft = 8, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for 64QAM, soft = 8, DFS (Nt=2, Nr=2).dat │ │ │ │ └── QPSK │ │ │ │ │ ├── sphere decoding for QPSK, soft = 1, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 1, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 1, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 1, DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 2, BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 2, BFS, K=3 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 2, BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft = 2, Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for QPSK, soft = 2, DFS (Nt=2, Nr=2).dat │ │ │ │ └── 4x4 │ │ │ │ ├── 16QAM │ │ │ │ ├── sphere decoding for 16QAM(normaize), soft = 1, Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 16QAM(normaize), soft = 2, Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 16QAM(normaize), soft = 3, Best First Search (Nt=4, Nr=4).dat │ │ │ │ └── sphere decoding for 16QAM(normaize), soft = 4, Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── 64QAM │ │ │ │ ├── sphere decoding for 64QAM(normaize), soft = 1, Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 64QAM(normaize), soft = 2, Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 64QAM(normaize), soft = 3, Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 64QAM(normaize), soft = 4, Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 64QAM(normaize), soft = 5, Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 64QAM(normaize), soft = 6, Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 64QAM(normaize), soft = 7, Best First Search (Nt=4, Nr=4).dat │ │ │ │ └── sphere decoding for 64QAM(normaize), soft = 8, Best First Search (Nt=4, Nr=4).dat │ │ │ │ └── QPSK │ │ │ │ ├── sphere decoding for QPSK(normaize), soft = 1, Best First Search (Nt=4, Nr=4).dat │ │ │ │ └── sphere decoding for QPSK(normaize), soft = 2, Best First Search (Nt=4, Nr=4).dat │ │ ├── v3 soft_vector │ │ │ ├── non-normalize │ │ │ │ └── 2x2 │ │ │ │ │ ├── 16QAM │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 1], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 1], BFS, K=12 (Nt=2, Nr=2).dat.rej │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 1], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 1], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 1], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], BFS, K=20 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 4, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 4, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 4, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 4, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 2], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 2], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 3], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 3], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 3], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 3], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 4, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 4, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 4, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 4, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 3, 2], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 3, 2], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 3, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 3, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for 16QAM, soft _vector= [4, 4, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── 64QAM │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 3, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 4, 4, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 4, 7, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 4, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 4], BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 8], BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 8], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 8], DFS (Nt=2, Nr=2).dat │ │ │ │ │ └── QPSK │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 1], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 1], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 1], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 1], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 2, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 2, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 2, 2, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 2, 2, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 2, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 2, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [2, 2, 2, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [2, 2, 2, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [2, 2, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for QPSK, soft _vector= [2, 2, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ └── normalize │ │ │ │ ├── 2x2 │ │ │ │ ├── 16QAM │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 1], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 1], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 1], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 1], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 1, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 1, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], BFS, K=20 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 2, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 3, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 4, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 4, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 4, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [1, 4, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 2], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 2], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 2, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 2, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [2, 3, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 3], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 3], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 3], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 3], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 3, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 4, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 4, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 4, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [3, 4, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 3, 2], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 3, 2], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 3, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 3, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 16QAM, soft _vector= [4, 4, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for 16QAM, soft _vector= [4, 4, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── 64QAM │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 2, 8], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 2, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 3, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 4, 4, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 4, 6, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 4, 7, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [2, 4, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [3, 3, 3, 8], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 4], BFS, K=16 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 8], BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 8], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for 64QAM, soft _vector= [4, 4, 4, 8], DFS (Nt=2, Nr=2).dat │ │ │ │ └── QPSK │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 1], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 1], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 1], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 1], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 1, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 2, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 2, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 1, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 2, 2, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 2, 2, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 2, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [1, 2, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [2, 2, 2, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [2, 2, 2, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ │ ├── sphere decoding for QPSK, soft _vector= [2, 2, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ │ └── sphere decoding for QPSK, soft _vector= [2, 2, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ └── 4x4 │ │ │ │ ├── 16QAM │ │ │ │ ├── sphere decoding for 16QAM(normalize), soft _vector= [1, 1, 1, 1, 4, 4, 4, 4], Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 16QAM(normalize), soft _vector= [1, 1, 2, 2, 3, 3, 4, 4], Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 16QAM(normalize), soft _vector= [1, 1, 2, 2, 4, 4, 4, 4], Best First Search (Nt=4, Nr=4).dat │ │ │ │ └── sphere decoding for 16QAM(normalize), soft _vector= [2, 2, 2, 2, 4, 4, 4, 4], Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── 64QAM │ │ │ │ ├── sphere decoding for 64QAM(normalize), soft _vector= [2, 2, 4, 4, 4, 4, 8, 8], Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 64QAM(normalize), soft _vector= [2, 2, 4, 4, 6, 6, 8, 8], Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for 64QAM(normalize), soft _vector= [2, 2, 4, 4, 8, 8, 8, 8], Best First Search (Nt=4, Nr=4).dat │ │ │ │ └── sphere decoding for 64QAM(normalize), soft _vector= [4, 4, 4, 4, 8, 8, 8, 8], Best First Search (Nt=4, Nr=4).dat │ │ │ │ └── QPSK │ │ │ │ ├── sphere decoding for QPSK(normalize), soft _vector= [1, 1, 1, 1, 1, 1, 2, 2], Best First Search (Nt=4, Nr=4).dat │ │ │ │ ├── sphere decoding for QPSK(normalize), soft _vector= [1, 1, 1, 1, 2, 2, 2, 2], Best First Search (Nt=4, Nr=4).dat │ │ │ │ └── sphere decoding for QPSK(normalize), soft _vector= [1, 1, 2, 2, 2, 2, 2, 2], Best First Search (Nt=4, Nr=4).dat │ │ ├── v4 OSIC │ │ │ └── non-normalize │ │ │ │ └── 2x2 │ │ │ │ ├── sphere decoding for 16QAM(OSIC), soft = 1, Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(OSIC), soft = 1, Best First Search (Nt=2, Nr=2).dat │ │ │ │ └── sphere decoding for QPSK(OSIC), soft = 1, Best First Search (Nt=2, Nr=2).dat │ │ └── v5 dynamic algorithm │ │ │ ├── non-normalize │ │ │ └── 2x2 │ │ │ │ ├── 16QAM │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 1, 4], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 1, 4], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 1, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 1, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 1, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 2, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 2, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 2, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 2, 4], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 2, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 2, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 2, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [3, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [3, 3, 3, 4], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [3, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [3, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [3, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [4, 4, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [4, 4, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [4, 4, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ └── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [4, 4, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── 64QAM │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [1, 4, 6, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [2, 2, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [2, 3, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [2, 4, 4, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [2, 4, 6, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [2, 4, 7, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [2, 4, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ └── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [4, 4, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ └── QPSK │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 1, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 1, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 1, 2], BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 1, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 1, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 2, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 2, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 2, 2, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 2, 2, 2], BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 2, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 2, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [2, 2, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ └── sphere decoding for QPSK(dynamic algorithm), soft _vector= [2, 2, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ └── normalize │ │ │ ├── 2x2 │ │ │ ├── 16QAM │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 1, 4], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 1, 4], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 1, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 1, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 1, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 1, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 2, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 2, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [1, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 2, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 2, 4], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 2, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 2, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 2, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 2, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [2, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [3, 3, 3, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [3, 3, 3, 4], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [3, 3, 3, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [3, 3, 3, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [3, 3, 3, 4], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [4, 4, 4, 4], BFS, K=12 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [4, 4, 4, 4], BFS, K=8 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [4, 4, 4, 4], Best First Search (Nt=2, Nr=2).dat │ │ │ │ └── sphere decoding for 16QAM(dynamic algorithm), soft _vector= [4, 4, 4, 4], DFS (Nt=2, Nr=2).dat │ │ │ ├── 64QAM │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [1, 4, 6, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [2, 2, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [2, 4, 4, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [2, 4, 6, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [2, 4, 7, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [2, 4, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ │ └── sphere decoding for 64QAM(dynamic algorithm), soft _vector= [4, 4, 8, 8], Best First Search (Nt=2, Nr=2).dat │ │ │ └── QPSK │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 1, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 1, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 1, 2], BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 1, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 1, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 2, 2], BFS, K=2 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 2, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 1, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 2, 2, 2], BFS, K=4 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 2, 2, 2], BFS, K=6 (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 2, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [1, 2, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ │ ├── sphere decoding for QPSK(dynamic algorithm), soft _vector= [2, 2, 2, 2], Best First Search (Nt=2, Nr=2).dat │ │ │ │ └── sphere decoding for QPSK(dynamic algorithm), soft _vector= [2, 2, 2, 2], DFS (Nt=2, Nr=2).dat │ │ │ └── 4x4 │ │ │ ├── 16QAM │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm)(normalize), soft _vector= [1, 1, 1, 1, 4, 4, 4, 4], Best First Search (Nt=4, Nr=4).dat │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm)(normalize), soft _vector= [1, 1, 2, 2, 3, 3, 4, 4], Best First Search (Nt=4, Nr=4).dat │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm)(normalize), soft _vector= [1, 1, 2, 2, 4, 4, 4, 4], Best First Search (Nt=4, Nr=4).dat │ │ │ ├── sphere decoding for 16QAM(dynamic algorithm)(normalize), soft _vector= [2, 2, 2, 2, 3, 3, 4, 4], Best First Search (Nt=4, Nr=4).dat │ │ │ └── sphere decoding for 16QAM(dynamic algorithm)(normalize), soft _vector= [2, 2, 2, 2, 4, 4, 4, 4], Best First Search (Nt=4, Nr=4).dat │ │ │ ├── 64QAM │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm)(normalize), soft _vector= [2, 2, 2, 2, 6, 6, 8, 8], Best First Search (Nt=4, Nr=4).dat │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm)(normalize), soft _vector= [2, 2, 2, 2, 8, 8, 8, 8], Best First Search (Nt=4, Nr=4).dat │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm)(normalize), soft _vector= [2, 2, 4, 4, 4, 4, 8, 8], Best First Search (Nt=4, Nr=4).dat │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm)(normalize), soft _vector= [2, 2, 4, 4, 6, 6, 8, 8], Best First Search (Nt=4, Nr=4).dat │ │ │ ├── sphere decoding for 64QAM(dynamic algorithm)(normalize), soft _vector= [2, 2, 4, 4, 8, 8, 8, 8], Best First Search (Nt=4, Nr=4).dat │ │ │ └── sphere decoding for 64QAM(dynamic algorithm)(normalize), soft _vector= [4, 4, 4, 4, 8, 8, 8, 8], Best First Search (Nt=4, Nr=4).dat │ │ │ └── QPSK │ │ │ ├── sphere decoding for QPSK(dynamic algorithm)(normalize), soft _vector= [1, 1, 1, 1, 1, 1, 2, 2], Best First Search (Nt=4, Nr=4).dat │ │ │ ├── sphere decoding for QPSK(dynamic algorithm)(normalize), soft _vector= [1, 1, 1, 1, 2, 2, 2, 2], Best First Search (Nt=4, Nr=4).dat │ │ │ └── sphere decoding for QPSK(dynamic algorithm)(normalize), soft _vector= [1, 1, 2, 2, 2, 2, 2, 2], Best First Search (Nt=4, Nr=4).dat │ │ ├── plot Addition.py │ │ ├── plot BER.py │ │ ├── plot Multiplication.py │ │ ├── plot Visit node.py │ │ ├── result │ │ ├── v1 origin │ │ │ └── non-normalize │ │ │ │ └── 2x2 │ │ │ │ ├── Addition_complexity for 2x2 MIMO (QPSK)(BFS K=2).png │ │ │ │ ├── Addition_complexity for 2x2 MIMO (QPSK)(Best Firsh Search).png │ │ │ │ ├── Addition_complexity for 2x2 MIMO (QPSK)(DFS).png │ │ │ │ ├── Average_visited_node for 2x2 MIMO (QPSK)(BFS K=2).png │ │ │ │ ├── Average_visited_node for 2x2 MIMO (QPSK)(Best First Search).png │ │ │ │ ├── Average_visited_node for 2x2 MIMO (QPSK)(DFS).png │ │ │ │ ├── BER of sphere decoding for 2x2 MIMO (QPSK)(BFS K=2).png │ │ │ │ ├── BER of sphere decoding for 2x2 MIMO (QPSK)(Best First Search).png │ │ │ │ ├── BER of sphere decoding for 2x2 MIMO (QPSK).png │ │ │ │ ├── Multiplication_complexity for 2x2 MIMO (QPSK)(BFS K=2).png │ │ │ │ ├── Multiplication_complexity for 2x2 MIMO (QPSK)(Best First Search).png │ │ │ │ └── Multiplication_complexity for 2x2 MIMO (QPSK)(DFS).png │ │ ├── v2 soft │ │ │ ├── non-normalize │ │ │ │ └── 2x2 │ │ │ │ │ ├── 16QAM │ │ │ │ │ ├── BFS │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=1,_BFS,_K=2.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=1,_BFS,_K=3.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=1,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=2,_BFS,_K=2.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=2,_BFS,_K=3.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=2,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=3,_BFS,_K=2.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=3,_BFS,_K=3.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=3,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=3,_BFS,_K=5.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=3,_BFS,_K=6.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_BFS,_K=10.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_BFS,_K=11.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_BFS,_K=2.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_BFS,_K=3.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_BFS,_K=5.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_BFS,_K=6.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_BFS,_K=7.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_BFS,_K=9.png │ │ │ │ │ │ ├── Addition_complexity(16QAM)總整理.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=1,_BFS,_K=2.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=1,_BFS,_K=3.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=1,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=2,_BFS,_K=2.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=2,_BFS,_K=3.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=2,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=3,_BFS,_K=2.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=3,_BFS,_K=3.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=3,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=3,_BFS,_K=5.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=3,_BFS,_K=6.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_BFS,_K=10.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_BFS,_K=11.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_BFS,_K=2.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_BFS,_K=3.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_BFS,_K=5.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_BFS,_K=6.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_BFS,_K=7.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_BFS,_K=9.png │ │ │ │ │ │ ├── Average_visited_node(16QAM)總整理.png │ │ │ │ │ │ ├── BER(16QAM),_soft=1,_BFS,_K=2.png │ │ │ │ │ │ ├── BER(16QAM),_soft=1,_BFS,_K=3.png │ │ │ │ │ │ ├── BER(16QAM),_soft=1,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(16QAM),_soft=2,_BFS,_K=2.png │ │ │ │ │ │ ├── BER(16QAM),_soft=2,_BFS,_K=3.png │ │ │ │ │ │ ├── BER(16QAM),_soft=2,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(16QAM),_soft=3,_BFS,_K=2.png │ │ │ │ │ │ ├── BER(16QAM),_soft=3,_BFS,_K=3.png │ │ │ │ │ │ ├── BER(16QAM),_soft=3,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(16QAM),_soft=3,_BFS,_K=5.png │ │ │ │ │ │ ├── BER(16QAM),_soft=3,_BFS,_K=6.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_BFS,_K=10.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_BFS,_K=11.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_BFS,_K=2.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_BFS,_K=3.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_BFS,_K=5.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_BFS,_K=6.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_BFS,_K=7.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_BFS,_K=9.png │ │ │ │ │ │ ├── BER(16QAM)總整理.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=1,_BFS,_K=2.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=1,_BFS,_K=3.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=1,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=2,_BFS,_K=2.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=2,_BFS,_K=3.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=2,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=3,_BFS,_K=2.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=3,_BFS,_K=3.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=3,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=3,_BFS,_K=5.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=3,_BFS,_K=6.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_BFS,_K=10.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_BFS,_K=11.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_BFS,_K=2.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_BFS,_K=3.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_BFS,_K=5.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_BFS,_K=6.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_BFS,_K=7.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_BFS,_K=9.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM)總整理.png │ │ │ │ │ ├── Best First Search │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM)總整理.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM)總整理.png │ │ │ │ │ │ ├── BER(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM)總整理.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM)總整理.png │ │ │ │ │ └── DFS │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=1,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=2,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=3,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(16QAM)總整理.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=1,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=2,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=3,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM)總整理.png │ │ │ │ │ │ ├── BER(16QAM),_soft=1,_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft=2,_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft=3,_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft=4,_DFS.png │ │ │ │ │ │ ├── BER(16QAM)總整理.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=1,_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=2,_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=3,_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_DFS.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM)總整理.png │ │ │ │ │ ├── 64QAM │ │ │ │ │ ├── BFS │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=1,_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=1,_BFS,_K=16.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=1,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=1,_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=2,_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=2,_BFS,_K=16.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=2,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=2,_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=3,_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=3,_BFS,_K=16.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=3,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=3,_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=4,_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=4,_BFS,_K=16.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=4,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=4,_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=5,_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=5,_BFS,_K=16.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=5,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=5,_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=6,_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=6,_BFS,_K=16.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=6,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=6,_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=7,_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=7,_BFS,_K=16.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=7,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=7,_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=8,_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=8,_BFS,_K=16.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=8,_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=8,_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM)總整理.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=1,_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=1,_BFS,_K=16.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=1,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=1,_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=2,_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=2,_BFS,_K=16.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=2,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=2,_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=3,_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=3,_BFS,_K=16.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=3,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=3,_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=4,_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=4,_BFS,_K=16.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=4,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=4,_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=5,_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=5,_BFS,_K=16.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=5,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=5,_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=6,_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=6,_BFS,_K=16.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=6,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=6,_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=7,_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=7,_BFS,_K=16.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=7,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=7,_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=8,_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=8,_BFS,_K=16.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=8,_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=8,_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM)總整理.png │ │ │ │ │ │ ├── BER(64QAM),_soft=1,_BFS,_K=12.png │ │ │ │ │ │ ├── BER(64QAM),_soft=1,_BFS,_K=16.png │ │ │ │ │ │ ├── BER(64QAM),_soft=1,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(64QAM),_soft=1,_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM),_soft=2,_BFS,_K=12.png │ │ │ │ │ │ ├── BER(64QAM),_soft=2,_BFS,_K=16.png │ │ │ │ │ │ ├── BER(64QAM),_soft=2,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(64QAM),_soft=2,_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM),_soft=3,_BFS,_K=12.png │ │ │ │ │ │ ├── BER(64QAM),_soft=3,_BFS,_K=16.png │ │ │ │ │ │ ├── BER(64QAM),_soft=3,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(64QAM),_soft=3,_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM),_soft=4,_BFS,_K=12.png │ │ │ │ │ │ ├── BER(64QAM),_soft=4,_BFS,_K=16.png │ │ │ │ │ │ ├── BER(64QAM),_soft=4,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(64QAM),_soft=4,_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM),_soft=5,_BFS,_K=12.png │ │ │ │ │ │ ├── BER(64QAM),_soft=5,_BFS,_K=16.png │ │ │ │ │ │ ├── BER(64QAM),_soft=5,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(64QAM),_soft=5,_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM),_soft=6,_BFS,_K=12.png │ │ │ │ │ │ ├── BER(64QAM),_soft=6,_BFS,_K=16.png │ │ │ │ │ │ ├── BER(64QAM),_soft=6,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(64QAM),_soft=6,_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM),_soft=7,_BFS,_K=12.png │ │ │ │ │ │ ├── BER(64QAM),_soft=7,_BFS,_K=16.png │ │ │ │ │ │ ├── BER(64QAM),_soft=7,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(64QAM),_soft=7,_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM),_soft=8,_BFS,_K=12.png │ │ │ │ │ │ ├── BER(64QAM),_soft=8,_BFS,_K=16.png │ │ │ │ │ │ ├── BER(64QAM),_soft=8,_BFS,_K=4.png │ │ │ │ │ │ ├── BER(64QAM),_soft=8,_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM)總整理.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=1,_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=1,_BFS,_K=16.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=1,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=1,_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=2,_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=2,_BFS,_K=16.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=2,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=2,_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=3,_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=3,_BFS,_K=16.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=3,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=3,_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=4,_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=4,_BFS,_K=16.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=4,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=4,_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=5,_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=5,_BFS,_K=16.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=5,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=5,_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=6,_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=6,_BFS,_K=16.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=6,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=6,_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=7,_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=7,_BFS,_K=16.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=7,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=7,_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=8,_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=8,_BFS,_K=16.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=8,_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=8,_BFS,_K=8.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM)總整理.png │ │ │ │ │ ├── Best First Search │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=5,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=6,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=7,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=8,_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM)總整理.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=5,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=6,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=7,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=8,_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM)總整理.png │ │ │ │ │ │ ├── BER(64QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft=5,_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft=6,_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft=7,_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft=8,_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM)總整理.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=5,_Best_First_Search.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=6,_Best_First_Search.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=7,_Best_First_Search.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=8,_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM)整理.png │ │ │ │ │ └── DFS │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=1,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=2,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=3,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=4,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=5,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=6,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=7,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=8,_DFS.png │ │ │ │ │ │ ├── Addition_complexity(64QAM)總整理.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=1,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=2,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=3,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=4,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=5,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=6,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=7,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=8,_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM)總整理.png │ │ │ │ │ │ ├── BER(64QAM),_soft=1,_DFS.png │ │ │ │ │ │ ├── BER(64QAM),_soft=2,_DFS.png │ │ │ │ │ │ ├── BER(64QAM),_soft=3,_DFS.png │ │ │ │ │ │ ├── BER(64QAM),_soft=4,_DFS.png │ │ │ │ │ │ ├── BER(64QAM),_soft=5,_DFS.png │ │ │ │ │ │ ├── BER(64QAM),_soft=6,_DFS.png │ │ │ │ │ │ ├── BER(64QAM),_soft=7,_DFS.png │ │ │ │ │ │ ├── BER(64QAM),_soft=8,_DFS.png │ │ │ │ │ │ ├── BER(64QAM)總整理.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=1,_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=2,_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=3,_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=4,_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=5,_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=6,_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=7,_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=8,_DFS.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM)總整理.png │ │ │ │ │ └── QPSK │ │ │ │ │ ├── BFS │ │ │ │ │ ├── Addition_complexity(QPSK),_soft=1,_BFS,_K=2.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft=1,_BFS,_K=4.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft=2,_BFS,_K=2.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft=2,_BFS,_K=3.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft=2,_BFS,_K=4.png │ │ │ │ │ ├── Addition_complexity(QPSK)總整理.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft=1,_BFS,_K=2.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft=1,_BFS,_K=4.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft=2,_BFS,_K=2.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft=2,_BFS,_K=3.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft=2,_BFS,_K=4.png │ │ │ │ │ ├── Average_visited_node(QPSK)總整理.png │ │ │ │ │ ├── BER(QPSK),_soft=1,_BFS,_K=2.png │ │ │ │ │ ├── BER(QPSK),_soft=1,_BFS,_K=4.png │ │ │ │ │ ├── BER(QPSK),_soft=2,_BFS,_K=2.png │ │ │ │ │ ├── BER(QPSK),_soft=2,_BFS,_K=3.png │ │ │ │ │ ├── BER(QPSK),_soft=2,_BFS,_K=4.png │ │ │ │ │ ├── BER(QPSK)總整理.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft=1,_BFS,_K=2.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft=1,_BFS,_K=4.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft=2,_BFS,_K=2.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft=2,_BFS,_K=3.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft=2,_BFS,_K=4.png │ │ │ │ │ └── Multiplication_complexity(QPSK)總整理.png │ │ │ │ │ ├── Best First Search │ │ │ │ │ ├── Addition_complexity(QPSK),_soft=1,_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft=2,_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(QPSK)總整理.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft=1,_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft=2,_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(QPSK)總整理.png │ │ │ │ │ ├── BER(QPSK),_soft=1,_Best_First_Search.png │ │ │ │ │ ├── BER(QPSK),_soft=2,_Best_First_Search.png │ │ │ │ │ ├── BER(QPSK)總整理.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft=1,_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft=2,_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(QPSK)總整理.png │ │ │ │ │ └── DFS │ │ │ │ │ ├── Addition_complexity(QPSK),_soft=1,_DFS.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft=2,_DFS.png │ │ │ │ │ ├── Addition_complexity(QPSK)總整理.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft=1,_DFS.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft=2,_DFS.png │ │ │ │ │ ├── Average_visited_node(QPSK)總整理.png │ │ │ │ │ ├── BER(QPSK),_soft=1,_DFS.png │ │ │ │ │ ├── BER(QPSK),_soft=2,_DFS.png │ │ │ │ │ ├── BER(QPSK)總整理.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft=1,_DFS.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft=2,_DFS.png │ │ │ │ │ └── Multiplication_complexity(QPSK)總整理.png │ │ │ └── normalize │ │ │ │ ├── 2x2 │ │ │ │ ├── 16QAM │ │ │ │ │ └── Best First Search │ │ │ │ │ │ ├── Addition_complexity(16QAM)總整理.png │ │ │ │ │ │ ├── Average_visited_node(16QAM)總整理.png │ │ │ │ │ │ ├── BER(16QAM)總整理.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM)總整理.png │ │ │ │ ├── 64QAM │ │ │ │ │ └── Best First Search │ │ │ │ │ │ ├── Addition_complexity(64QAM)總整理.png │ │ │ │ │ │ ├── Average_visited_node(64QAM)總整理.png │ │ │ │ │ │ ├── BER(64QAM)總整理.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM)總整理.png │ │ │ │ └── QPSK │ │ │ │ │ └── Best First Search │ │ │ │ │ ├── Addition_complexity(QPSK)總整理.png │ │ │ │ │ ├── Average_visited_node(QPSK)總整理.png │ │ │ │ │ ├── BER(QPSK)總整理.png │ │ │ │ │ └── Multiplication_complexity(QPSK)總整理.png │ │ │ │ └── 4x4 │ │ │ │ ├── 16QAM │ │ │ │ └── Best First Search │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM)總整理.png │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)總整理.png │ │ │ │ │ ├── BER(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)總整理.png │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=2,_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=3,_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft=4,_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)總整理.png │ │ │ │ ├── 64QAM │ │ │ │ └── Best First Search │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=5,_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=6,_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(64QAM),_soft=7,_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(64QAM)總整理.png │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=5,_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=6,_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM),_soft=7,_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM)總整理.png │ │ │ │ │ ├── BER(64QAM),_soft=5,_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM),_soft=6,_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM),_soft=7,_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM)總整理.png │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=5,_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=6,_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft=7,_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(64QAM)總整理.png │ │ │ │ └── QPSK │ │ │ │ └── Best First Search │ │ │ │ ├── Addition_complexity(QPSK),_soft=1,_Best_First_Search.png │ │ │ │ ├── Addition_complexity(QPSK)總整理.png │ │ │ │ ├── Average_visited_node(QPSK),_soft=1,_Best_First_Search.png │ │ │ │ ├── Average_visited_node(QPSK)總整理.png │ │ │ │ ├── BER(QPSK),_soft=1,_Best_First_Search.png │ │ │ │ ├── BER(QPSK)總整理.png │ │ │ │ ├── Multiplication_complexity(QPSK),_soft=1,_Best_First_Search.png │ │ │ │ └── Multiplication_complexity(QPSK)總整理.png │ │ ├── v3 soft_vector │ │ │ ├── non-normalize │ │ │ │ └── 2x2 │ │ │ │ │ ├── 16QAM │ │ │ │ │ ├── [1,1,1,1] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_1,_1],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_1,_1],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_1,_1],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_1,_1],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_1,_1],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_1,_1],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_1,_1],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_1,_1],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_1,_1],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_1,_1],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_1,_1],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_1,_1],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_1,_1],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_1,_1],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_1,_1],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_1,_1],_DFS.png │ │ │ │ │ ├── [1,1,1,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_1,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_1,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_1,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_1,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_1,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_1,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_1,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_1,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_1,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_1,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_1,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_1,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_1,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_1,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_1,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_1,_4],_DFS.png │ │ │ │ │ ├── [1,2,3,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=16.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=20.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=16.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=20.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_2,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_2,_3,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=16.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=20.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_2,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_2,_3,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=16.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=20.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[1,_2,_3,_4],_DFS.png │ │ │ │ │ ├── [1,3,3,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_3,_3,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_3,_3,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_3,_3,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[1,_3,_3,_4],_DFS.png │ │ │ │ │ ├── [1,3,4,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_3,_4,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_3,_4,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_3,_4,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[1,_3,_4,_4],_DFS.png │ │ │ │ │ ├── [1,4,4,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[1,_4,_4,_4],_DFS.png │ │ │ │ │ ├── [2,2,2,2] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_2,_2],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_2,_2],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_2,_2],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_2,_2],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_2,_2],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_2,_2],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_2,_2],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_2,_2],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ │ │ ├── [2,2,2,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_2,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_2,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_2,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_2,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_2,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_2,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_2,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_2,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_2,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_2,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_2,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_2,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_2,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_2,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_2,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_2,_4],_DFS.png │ │ │ │ │ ├── [2,2,4,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_4,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_4,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_4,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_4,_4],_DFS.png │ │ │ │ │ ├── [2,3,3,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_3,_3,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_3,_3,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_3,_3,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[2,_3,_3,_4],_DFS.png │ │ │ │ │ ├── [2,3,4,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_3,_4,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_3,_4,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_3,_4,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[2,_3,_4,_4],_DFS.png │ │ │ │ │ ├── [3,3,3,3] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_3,_3],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_3,_3],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_3,_3],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_3,_3],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_3,_3],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_3,_3],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_3,_3],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_3,_3],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_3,_3],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_3,_3],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_3,_3],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_3,_3],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_3,_3],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_3,_3],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_3,_3],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_3,_3],_DFS.png │ │ │ │ │ ├── [3,3,3,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_3,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_3,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_3,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_3,_4],_DFS.png │ │ │ │ │ ├── [3,3,4,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_3,_4,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_3,_4,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_3,_4,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[3,_3,_4,_4],_DFS.png │ │ │ │ │ ├── [3,4,4,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[3,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[3,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[3,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[3,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[3,_4,_4,_4],_DFS.png │ │ │ │ │ ├── [4,4,3,2] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[4,_4,_3,_2],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[4,_4,_3,_2],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[4,_4,_3,_2],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[4,_4,_3,_2],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[4,_4,_3,_2],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[4,_4,_3,_2],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[4,_4,_3,_2],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[4,_4,_3,_2],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[4,_4,_3,_2],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[4,_4,_3,_2],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[4,_4,_3,_2],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[4,_4,_3,_2],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[4,_4,_3,_2],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[4,_4,_3,_2],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[4,_4,_3,_2],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[4,_4,_3,_2],_DFS.png │ │ │ │ │ └── [4,4,4,4] │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ │ ├── 64QAM │ │ │ │ │ ├── [2,2,2,8] │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_2,_2,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_2,_2,_8],_DFS.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=4.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_2,_2,_8],_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_2,_2,_8],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM),_soft_vector=[2,_2,_2,_8],_DFS.png │ │ │ │ │ ├── [2,2,8,8] │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_2,_8,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_2,_8,_8],_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_2,_8,_8],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM),_soft_vector=[2,_2,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── [2,3,8,8] │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_3,_8,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_3,_8,_8],_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_3,_8,_8],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM),_soft_vector=[2,_3,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── [2,4,4,8] │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_4,_4,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_4,_4,_8],_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_4,_4,_8],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM),_soft_vector=[2,_4,_4,_8],_Best_First_Search.png │ │ │ │ │ ├── [2,4,7,8] │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_4,_7,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_4,_7,_8],_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_4,_7,_8],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM),_soft_vector=[2,_4,_7,_8],_Best_First_Search.png │ │ │ │ │ ├── [2,4,8,8] (N=10000000) │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM),_soft_vector=[2,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── [3,3,3,8] │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=4.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=4.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[3,_3,_3,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[3,_3,_3,_8],_DFS.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=4.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[3,_3,_3,_8],_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[3,_3,_3,_8],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=4.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM),_soft_vector=[3,_3,_3,_8],_DFS.png │ │ │ │ │ ├── [4,4,4,4] │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=16.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=16.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=16.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=16.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ │ └── [4,4,4,8] │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[4,_4,_4,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[4,_4,_4,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[4,_4,_4,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[4,_4,_4,_8],_DFS.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[4,_4,_4,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[4,_4,_4,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[4,_4,_4,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[4,_4,_4,_8],_DFS.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[4,_4,_4,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[4,_4,_4,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[4,_4,_4,_8],_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[4,_4,_4,_8],_DFS.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[4,_4,_4,_8],_BFS,_K=6.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[4,_4,_4,_8],_BFS,_K=8.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[4,_4,_4,_8],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM),_soft_vector=[4,_4,_4,_8],_DFS.png │ │ │ │ │ └── QPSK │ │ │ │ │ ├── Addition_complexity(QPSK)(BFS)總整理.png │ │ │ │ │ ├── Addition_complexity(QPSK)(Best First Search)總整理.png │ │ │ │ │ ├── Addition_complexity(QPSK)(DFS)總整理.png │ │ │ │ │ ├── Average_visited_node(QPSK)(BFS)總整理.png │ │ │ │ │ ├── Average_visited_node(QPSK)(Best First Search)總整理.png │ │ │ │ │ ├── Average_visited_node(QPSK)(DFS)總整理.png │ │ │ │ │ ├── BER(QPSK)(BFS)總整理.png │ │ │ │ │ ├── BER(QPSK)(Best First Search)總整理.png │ │ │ │ │ ├── BER(QPSK)(DFS)總整理.png │ │ │ │ │ ├── Multiplication_complexity(QPSK)(BFS)總整理.png │ │ │ │ │ ├── Multiplication_complexity(QPSK)(Best First Search)總整理.png │ │ │ │ │ ├── Multiplication_complexity(QPSK)(DFS)總整理.png │ │ │ │ │ ├── [1,1,1,1] │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_1,_1],_BFS,_K=2.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_1,_1],_BFS,_K=4.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_1,_1],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_1,_1],_DFS.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_1,_1],_BFS,_K=2.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_1,_1],_BFS,_K=4.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_1,_1],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_1,_1],_DFS.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_1,_1],_BFS,_K=2.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_1,_1],_BFS,_K=4.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_1,_1],_Best_First_Search.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_1,_1],_DFS.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_1,_1],_BFS,_K=2.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_1,_1],_BFS,_K=4.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_1,_1],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_1,_1],_DFS.png │ │ │ │ │ ├── [1,1,1,2] │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_1,_2],_BFS,_K=2.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_1,_2],_BFS,_K=4.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_1,_2],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_1,_2],_DFS.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_1,_2],_BFS,_K=2.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_1,_2],_BFS,_K=4.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_1,_2],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_1,_2],_DFS.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_1,_2],_BFS,_K=2.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_1,_2],_BFS,_K=4.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_1,_2],_Best_First_Search.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_1,_2],_DFS.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_1,_2],_BFS,_K=2.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_1,_2],_BFS,_K=4.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_1,_2],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_1,_2],_DFS.png │ │ │ │ │ ├── [1,1,2,2] │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_2,_2],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_2,_2],_DFS.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_2,_2],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_2,_2],_DFS.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_2,_2],_Best_First_Search.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_2,_2],_DFS.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_2,_2],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_2,_2],_DFS.png │ │ │ │ │ ├── [1,2,2,2] │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_2,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_2,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_2,_2,_2],_DFS.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_2,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_2,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_2,_2,_2],_DFS.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_2,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_2,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_2,_2,_2],_DFS.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_2,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_2,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(QPSK),_soft_vector=[1,_2,_2,_2],_DFS.png │ │ │ │ │ └── [2,2,2,2] │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[2,_2,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[2,_2,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[2,_2,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[2,_2,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[2,_2,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[2,_2,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ ├── BER(QPSK),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[2,_2,_2,_2],_BFS,_K=2.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[2,_2,_2,_2],_BFS,_K=4.png │ │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(QPSK),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ └── normalize │ │ │ │ ├── 2x2 │ │ │ │ ├── 16QAM │ │ │ │ │ └── Best First Search │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(16QAM)總整理.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(16QAM)總整理.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── BER(16QAM)總整理.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_4,_4],_Best_First_Search.png │ │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(16QAM)總整理.png │ │ │ │ ├── 64QAM │ │ │ │ │ └── Best First Search │ │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_4,_6,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Addition_complexity(64QAM)總整理.png │ │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_4,_6,_8],_Best_First_Search.png │ │ │ │ │ │ ├── Average_visited_node(64QAM)總整理.png │ │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_4,_6,_8],_Best_First_Search.png │ │ │ │ │ │ ├── BER(64QAM)總整理.png │ │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[2,_4,_6,_8],_Best_First_Search.png │ │ │ │ │ │ └── Multiplication_complexity(64QAM)總整理.png │ │ │ │ └── QPSK │ │ │ │ │ └── Best First Search │ │ │ │ │ ├── Addition_complexity(QPSK)總整理.png │ │ │ │ │ ├── Average_visited_node(QPSK)總整理.png │ │ │ │ │ ├── BER(QPSK)總整理.png │ │ │ │ │ └── Multiplication_complexity(QPSK)總整理.png │ │ │ │ └── 4x4 │ │ │ │ ├── 16QAM │ │ │ │ └── Best First Search │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_1,_1,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[1,_1,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM),_soft_vector=[2,_2,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM)總整理.png │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_1,_1,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[1,_1,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM),_soft_vector=[2,_2,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)總整理.png │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_1,_1,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM),_soft_vector=[1,_1,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM),_soft_vector=[2,_2,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)總整理.png │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_1,_1,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[1,_1,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(16QAM),_soft_vector=[2,_2,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)總整理.png │ │ │ │ ├── 64QAM │ │ │ │ └── Best First Search │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_2,_4,_4,_4,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_2,_4,_4,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[2,_2,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(64QAM),_soft_vector=[4,_4,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(64QAM)總整理.png │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_2,_4,_4,_4,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_2,_4,_4,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[2,_2,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM),_soft_vector=[4,_4,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM)總整理.png │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_2,_4,_4,_4,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_2,_4,_4,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM),_soft_vector=[2,_2,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM),_soft_vector=[4,_4,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM)總整理.png │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[2,_2,_4,_4,_4,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[2,_2,_4,_4,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[2,_2,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Multiplication_complexity(64QAM),_soft_vector=[4,_4,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(64QAM)總整理.png │ │ │ │ └── QPSK │ │ │ │ └── Best First Search │ │ │ │ ├── Addition_complexity(QPSK),_soft_vector=[1,_1,_1,_1,_1,_1,_2,_2],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(QPSK)總整理.png │ │ │ │ ├── Average_visited_node(QPSK),_soft_vector=[1,_1,_1,_1,_1,_1,_2,_2],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(QPSK)總整理.png │ │ │ │ ├── BER(QPSK),_soft_vector=[1,_1,_1,_1,_1,_1,_2,_2],_Best_First_Search.png │ │ │ │ ├── BER(QPSK)總整理.png │ │ │ │ ├── Multiplication_complexity(QPSK),_soft_vector=[1,_1,_1,_1,_1,_1,_2,_2],_Best_First_Search.png │ │ │ │ └── Multiplication_complexity(QPSK)總整理.png │ │ ├── v4 OSIC │ │ │ └── non-normalize │ │ │ │ └── 2x2 │ │ │ │ ├── Addition_complexity(OSIC)(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ ├── Addition_complexity(OSIC)(64QAM),_soft=1,_Best_First_Search.png │ │ │ │ ├── Addition_complexity(OSIC)(QPSK),_soft=1,_Best_First_Search.png │ │ │ │ ├── Average_visited_node(OSIC)(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ ├── Average_visited_node(OSIC)(64QAM),_soft=1,_Best_First_Search.png │ │ │ │ ├── Average_visited_node(OSIC)(QPSK),_soft=1,_Best_First_Search.png │ │ │ │ ├── BER(OSIC)(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ ├── BER(OSIC)(64QAM),_soft=1,_Best_First_Search.png │ │ │ │ ├── BER(OSIC)(QPSK),_soft=1,_Best_First_Search.png │ │ │ │ ├── Multiplication_complexity(OSIC)(16QAM),_soft=1,_Best_First_Search.png │ │ │ │ ├── Multiplication_complexity(OSIC)(64QAM),_soft=1,_Best_First_Search.png │ │ │ │ └── Multiplication_complexity(OSIC)(QPSK),_soft=1,_Best_First_Search.png │ │ └── v5 dynamic algorithm │ │ │ ├── non-normalize │ │ │ └── 2x2 │ │ │ │ ├── 16QAM │ │ │ │ ├── [1,1,1,4] │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=2.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=4.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=8.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_DFS.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=2.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=4.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=8.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_DFS.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=2.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=4.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=8.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_DFS.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=2.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=4.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_BFS,_K=8.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_4],_DFS.png │ │ │ │ ├── [1,1,4,4] (N=5000000) │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_4,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_4,_4],_Best_First_Search.png │ │ │ │ ├── [1,2,3,4] (N=10000000) │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_2,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_2,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_2,_3,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_2,_3,_4],_Best_First_Search.png │ │ │ │ ├── [1,2,4,4] (N=20000000) │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_2,_4,_4],_Best_First_Search.png │ │ │ │ ├── [1,3,3,4] │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_DFS.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_DFS.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_DFS.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_3,_3,_4],_DFS.png │ │ │ │ ├── [2,2,2,4] (N=5000000) │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=12.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=4.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=8.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_DFS.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=12.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=4.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=8.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_DFS.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=12.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=4.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=8.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_DFS.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=12.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=4.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_BFS,_K=8.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_4],_DFS.png │ │ │ │ ├── [2,2,3,4] (N=5000000) │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_3,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_3,_4],_Best_First_Search.png │ │ │ │ ├── [2,2,4,4] (N=10000000) │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4],_Best_First_Search.png │ │ │ │ ├── [2,3,3,4] (N=5000000) │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_DFS.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_DFS.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_DFS.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_3,_3,_4],_DFS.png │ │ │ │ ├── [3,3,3,4] (N=5000000) │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=4.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_DFS.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=4.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_DFS.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=4.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_DFS.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=12.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=4.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_BFS,_K=8.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[3,_3,_3,_4],_DFS.png │ │ │ │ └── [4,4,4,4] │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_BFS,_K=12.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_BFS,_K=8.png │ │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4],_DFS.png │ │ │ │ ├── 64QAM │ │ │ │ ├── [1,4,6,8] (N=10000000) │ │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[1,_4,_6,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[1,_4,_6,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[1,_4,_6,_8],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[1,_4,_6,_8],_Best_First_Search.png │ │ │ │ ├── [2,2,8,8] (N=10000000) │ │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_8,_8],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_8,_8],_Best_First_Search.png │ │ │ │ ├── [2,3,8,8] (N=10000000) │ │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_3,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[2,_3,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[2,_3,_8,_8],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_3,_8,_8],_Best_First_Search.png │ │ │ │ ├── [2,4,4,8] (N=5000000) │ │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_4,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_4,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_4,_8],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_4,_8],_Best_First_Search.png │ │ │ │ ├── [2,4,6,8] (N=10000000) │ │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_6,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_6,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_6,_8],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_6,_8],_Best_First_Search.png │ │ │ │ ├── [2,4,7,8] (N=10000000) │ │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_7,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_7,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_7,_8],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_7,_8],_Best_First_Search.png │ │ │ │ ├── [2,4,8,8] (N=10000000) │ │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_4,_8,_8],_Best_First_Search.png │ │ │ │ └── [4,4,8,8] (N=10000000) │ │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[4,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[4,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[4,_4,_8,_8],_Best_First_Search.png │ │ │ │ │ └── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[4,_4,_8,_8],_Best_First_Search.png │ │ │ │ └── QPSK │ │ │ │ ├── [1,1,1,2] │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=2.png │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=4.png │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=6.png │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_DFS.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=2.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=4.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=6.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_DFS.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=2.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=4.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=6.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_Best_First_Search.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_DFS.png │ │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=2.png │ │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=4.png │ │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_BFS,_K=6.png │ │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_Best_First_Search.png │ │ │ │ └── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_2],_DFS.png │ │ │ │ ├── [1,1,2,2] │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_BFS,_K=2.png │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_BFS,_K=4.png │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_DFS.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_BFS,_K=2.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_BFS,_K=4.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_DFS.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_BFS,_K=2.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_BFS,_K=4.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_Best_First_Search.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_DFS.png │ │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_BFS,_K=2.png │ │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_BFS,_K=4.png │ │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_Best_First_Search.png │ │ │ │ └── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2],_DFS.png │ │ │ │ ├── [1,2,2,2] (N=10000000) │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_BFS,_K=4.png │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_BFS,_K=6.png │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_DFS.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_BFS,_K=4.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_BFS,_K=6.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_DFS.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_BFS,_K=4.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_BFS,_K=6.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_Best_First_Search.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_DFS.png │ │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_BFS,_K=4.png │ │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_BFS,_K=6.png │ │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_Best_First_Search.png │ │ │ │ └── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_2,_2,_2],_DFS.png │ │ │ │ └── [2,2,2,2] │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2],_Best_First_Search.png │ │ │ │ └── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2],_DFS.png │ │ │ └── normalize │ │ │ ├── 2x2 │ │ │ ├── 16QAM │ │ │ │ └── Best First Search │ │ │ │ │ ├── Addition_complexity(16QAM)總整理.png │ │ │ │ │ ├── Average_visited_node(16QAM)總整理.png │ │ │ │ │ ├── BER(16QAM)總整理.png │ │ │ │ │ └── Multiplication_complexity(16QAM)總整理.png │ │ │ ├── 64QAM │ │ │ │ └── Best First Search │ │ │ │ │ ├── Addition_complexity(64QAM)總整理.png │ │ │ │ │ ├── Average_visited_node(64QAM)總整理.png │ │ │ │ │ ├── BER(64QAM)總整理.png │ │ │ │ │ └── Multiplication_complexity(64QAM)總整理.png │ │ │ └── QPSK │ │ │ │ └── Best First Search │ │ │ │ ├── Addition_complexity(QPSK)總整理.png │ │ │ │ ├── Average_visited_node(QPSK)總整理.png │ │ │ │ ├── BER(QPSK)總整理.png │ │ │ │ └── Multiplication_complexity(QPSK)總整理.png │ │ │ └── 4x4 │ │ │ ├── 16QAM │ │ │ └── Best First Search │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(16QAM)(dynamic_algorithm)總整理.png │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(16QAM)(dynamic_algorithm)總整理.png │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ ├── BER(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ ├── BER(16QAM)(dynamic_algorithm)總整理.png │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_3,_3,_4,_4],_Best_First_Search.png │ │ │ │ ├── Multiplication_complexity(16QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_4,_4,_4,_4],_Best_First_Search.png │ │ │ │ └── Multiplication_complexity(16QAM)(dynamic_algorithm)總整理.png │ │ │ ├── 64QAM │ │ │ └── Best First Search │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_4,_4,_8,_8],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ ├── Addition_complexity(64QAM)(dynamic_algorithm)總整理.png │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_4,_4,_8,_8],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ ├── Average_visited_node(64QAM)(dynamic_algorithm)總整理.png │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_4,_4,_8,_8],_Best_First_Search.png │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ ├── BER(64QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ ├── BER(64QAM)(dynamic_algorithm)總整理.png │ │ │ │ ├── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ ├── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_2,_2,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ ├── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_4,_4,_8,_8],_Best_First_Search.png │ │ │ │ ├── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_6,_6,_8,_8],_Best_First_Search.png │ │ │ │ ├── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[2,_2,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ ├── Multiplication_complexity(64QAM)(dynamic_algorithm),_soft_vector=[4,_4,_4,_4,_8,_8,_8,_8],_Best_First_Search.png │ │ │ │ └── Multiplication_complexity(64QAM)(dynamic_algorithm)總整理.png │ │ │ └── QPSK │ │ │ └── Best First Search │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_1,_1,_2,_2],_Best_First_Search.png │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_2,_2,_2,_2],_Best_First_Search.png │ │ │ ├── Addition_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_2,_2,_2,_2],_Best_First_Search.png │ │ │ ├── Addition_complexity(QPSK)總整理.png │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_1,_1,_2,_2],_Best_First_Search.png │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_2,_2,_2,_2],_Best_First_Search.png │ │ │ ├── Average_visited_node(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_2,_2,_2,_2],_Best_First_Search.png │ │ │ ├── Average_visited_node(QPSK)總整理.png │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_1,_1,_2,_2],_Best_First_Search.png │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_2,_2,_2,_2],_Best_First_Search.png │ │ │ ├── BER(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_2,_2,_2,_2],_Best_First_Search.png │ │ │ ├── BER(QPSK)總整理.png │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_1,_1,_2,_2],_Best_First_Search.png │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_1,_1,_2,_2,_2,_2],_Best_First_Search.png │ │ │ ├── Multiplication_complexity(QPSK)(dynamic_algorithm),_soft_vector=[1,_1,_2,_2,_2,_2,_2,_2],_Best_First_Search.png │ │ │ └── Multiplication_complexity(QPSK)總整理.png │ │ ├── sphere decoding(better initial vector) v4.py │ │ ├── sphere decoding(dynamical soft value) v5 .py │ │ ├── sphere decoding(origin) v1.py │ │ ├── sphere decoding(static branch vector) v3.py │ │ └── sphere decoding(static branch) v2.py ├── space-time coding │ ├── Alamouti_2x1_antenna_selection.py │ ├── Alamouti_2x1_precoding.py │ ├── Alamouti_scheme.py │ └── result │ │ ├── Alamouti_2x1_antenna_selection.png │ │ ├── Alamouti_2x1_precoding.png │ │ └── Alamouti_scheme(2x2)(BPSK).png └── using CSI at the transmitter │ ├── Alamouti_2x1_antenna_selection.py │ ├── Alamouti_2x1_precoding.py │ ├── ZF_MMSE detection with antenna selection.py.py │ ├── ZF_MMSE pre-qualization.py │ ├── ergodic_capacity(optimum antenna selection).py │ ├── ergodic_capacity(sub-optimal antenna selection).py │ └── result │ ├── Alamouti_2x1_antenna_selection.png │ ├── Alamouti_2x1_precoding.png │ ├── ZF_MMSE detection with antenna selection.png │ ├── ZF_MMSE pre-equalization(diversity order = 1, Nt=Nr=2).png │ ├── ZF_MMSE pre-equalization(diversity order = 1, Nt=Nr=4).png │ ├── ZF_MMSE pre-equalization(diversity order = 2).png │ ├── optimum antenna selection for ergodic channel capacity.png │ ├── sub-optimum antenna selection for ergodic channel capacity (ascending order).png │ └── sub-optimum antenna selection for ergodic channel capacity (decending order).png ├── OFDM ├── BER for BPSK in OFDM with Rayleigh multipath channel.docx ├── BER for BPSK in Rayleigh channel.docx ├── BPSK BER with OFDM modulation.docx ├── PAPR reduction │ ├── CCDF PAPR DFT-spreading(pulse shaping).py │ ├── CCDF PAPR DFT-spreading.py │ ├── OFDM signal.py │ ├── PAPR (single carrier).py │ ├── PAPR of Chu sequence.py │ ├── PAPR of preamble.py │ ├── SQNR with quantization clipping.py │ ├── Wibro-Preamble │ │ ├── C80216e-04_241r1_pdf.dat │ │ ├── Preamble_sym0.dat │ │ ├── Preamble_sym1.dat │ │ ├── Preamble_sym10.dat │ │ ├── Preamble_sym100.dat │ │ ├── Preamble_sym101.dat │ │ ├── Preamble_sym102.dat │ │ ├── Preamble_sym103.dat │ │ ├── Preamble_sym104.dat │ │ ├── Preamble_sym105.dat │ │ ├── Preamble_sym106.dat │ │ ├── Preamble_sym107.dat │ │ ├── Preamble_sym108.dat │ │ ├── Preamble_sym109.dat │ │ ├── Preamble_sym11.dat │ │ ├── Preamble_sym110.dat │ │ ├── Preamble_sym111.dat │ │ ├── Preamble_sym112.dat │ │ ├── Preamble_sym113.dat │ │ ├── Preamble_sym12.dat │ │ ├── Preamble_sym13.dat │ │ ├── Preamble_sym14.dat │ │ ├── Preamble_sym15.dat │ │ ├── Preamble_sym16.dat │ │ ├── Preamble_sym17.dat │ │ ├── Preamble_sym18.dat │ │ ├── Preamble_sym19.dat │ │ ├── Preamble_sym2.dat │ │ ├── Preamble_sym20.dat │ │ ├── Preamble_sym21.dat │ │ ├── Preamble_sym22.dat │ │ ├── Preamble_sym23.dat │ │ ├── Preamble_sym24.dat │ │ ├── Preamble_sym25.dat │ │ ├── Preamble_sym26.dat │ │ ├── Preamble_sym27.dat │ │ ├── Preamble_sym28.dat │ │ ├── Preamble_sym29.dat │ │ ├── Preamble_sym3.dat │ │ ├── Preamble_sym30.dat │ │ ├── Preamble_sym31.dat │ │ ├── Preamble_sym32.dat │ │ ├── Preamble_sym33.dat │ │ ├── Preamble_sym34.dat │ │ ├── Preamble_sym35.dat │ │ ├── Preamble_sym36.dat │ │ ├── Preamble_sym37.dat │ │ ├── Preamble_sym38.dat │ │ ├── Preamble_sym39.dat │ │ ├── Preamble_sym4.dat │ │ ├── Preamble_sym40.dat │ │ ├── Preamble_sym41.dat │ │ ├── Preamble_sym42.dat │ │ ├── Preamble_sym43.dat │ │ ├── Preamble_sym44.dat │ │ ├── Preamble_sym45.dat │ │ ├── Preamble_sym46.dat │ │ ├── Preamble_sym47.dat │ │ ├── Preamble_sym48.dat │ │ ├── Preamble_sym49.dat │ │ ├── Preamble_sym5.dat │ │ ├── Preamble_sym50.dat │ │ ├── Preamble_sym51.dat │ │ ├── Preamble_sym52.dat │ │ ├── Preamble_sym53.dat │ │ ├── Preamble_sym54.dat │ │ ├── Preamble_sym55.dat │ │ ├── Preamble_sym56.dat │ │ ├── Preamble_sym57.dat │ │ ├── Preamble_sym58.dat │ │ ├── Preamble_sym59.dat │ │ ├── Preamble_sym6.dat │ │ ├── Preamble_sym60.dat │ │ ├── Preamble_sym61.dat │ │ ├── Preamble_sym62.dat │ │ ├── Preamble_sym63.dat │ │ ├── Preamble_sym64.dat │ │ ├── Preamble_sym65.dat │ │ ├── Preamble_sym66.dat │ │ ├── Preamble_sym67.dat │ │ ├── Preamble_sym68.dat │ │ ├── Preamble_sym69.dat │ │ ├── Preamble_sym7.dat │ │ ├── Preamble_sym70.dat │ │ ├── Preamble_sym71.dat │ │ ├── Preamble_sym72.dat │ │ ├── Preamble_sym73.dat │ │ ├── Preamble_sym74.dat │ │ ├── Preamble_sym75.dat │ │ ├── Preamble_sym76.dat │ │ ├── Preamble_sym77.dat │ │ ├── Preamble_sym78.dat │ │ ├── Preamble_sym79.dat │ │ ├── Preamble_sym8.dat │ │ ├── Preamble_sym80.dat │ │ ├── Preamble_sym81.dat │ │ ├── Preamble_sym82.dat │ │ ├── Preamble_sym83.dat │ │ ├── Preamble_sym84.dat │ │ ├── Preamble_sym85.dat │ │ ├── Preamble_sym86.dat │ │ ├── Preamble_sym87.dat │ │ ├── Preamble_sym88.dat │ │ ├── Preamble_sym89.dat │ │ ├── Preamble_sym9.dat │ │ ├── Preamble_sym90.dat │ │ ├── Preamble_sym91.dat │ │ ├── Preamble_sym92.dat │ │ ├── Preamble_sym93.dat │ │ ├── Preamble_sym94.dat │ │ ├── Preamble_sym95.dat │ │ ├── Preamble_sym96.dat │ │ ├── Preamble_sym97.dat │ │ ├── Preamble_sym98.dat │ │ └── Preamble_sym99.dat │ ├── compare CCDF PTS.py │ ├── pdf of clipped and filtered OFDM signal.py │ ├── plot CCDF.py │ └── result │ │ ├── CCDF of DFT-spreading with pulse shaping(16QAM) , when M varies.png │ │ ├── CCDF of DFT-spreading with pulse shaping(16QAM).png │ │ ├── CCDF of DFT-spreading with pulse shaping(QPSK).png │ │ ├── CCDF of DFT-spreading.png │ │ ├── CCDF of OFDM signal.png │ │ ├── Characteristics of an equiripple passband FIR filter.png │ │ ├── PAPR of Chu sequence.png │ │ ├── PAPR of preamble.png │ │ ├── PSD of baseband and passband signal , pdf of unclipped passband signal.png │ │ ├── PSD of clipped and clipped,filtered passband signal , pdf of clipped and clipped,filtered passband signal.png │ │ ├── SQNR of quantized OFDM signal against the clipping level.png │ │ ├── baseband, passband signals for 16QAM-modulated symbols.png │ │ ├── baseband, passband signals for BPSK-modulated symbols.png │ │ ├── baseband, passband signals for QPSK-modulated symbols.png │ │ ├── performance analysis of PTS technique.png │ │ └── time-domain OFDM signals and their PDFs.png ├── basic structure │ ├── inter carrier interference.py │ ├── ofdm modulation(only AWGN).py │ ├── ofdm modulation(rayleigh multipath channel) .py │ ├── power spectrum.py │ ├── result │ │ ├── Error Magnitude (resulted from ISI).png │ │ ├── ofdm PSD(classical_spectrum_estimation).png │ │ ├── ofdm PSD(estimated_by_autocorrelation).png │ │ ├── ofdm modulation(only AWGN) for 16QAM.png │ │ ├── ofdm modulation(only AWGN) for BPSK.png │ │ ├── ofdm modulation(only AWGN) for QPSK.png │ │ ├── ofdm modulation(rayleigh multipath channel) for 16QAM.png │ │ ├── ofdm modulation(rayleigh multipath channel) for BPSK.png │ │ ├── ofdm modulation(rayleigh multipath channel) for QPSK.png │ │ ├── sinusoial signals with different frequencys, pharses and their DFTs.png │ │ └── use symbol timing to verify ofdm structure.png │ ├── symbol timing.py │ └── test_orthogonality.py ├── channel estimation │ ├── channel estimation (KL expansion for block type).py │ ├── channel estimation (KL expansion for comb type).py │ ├── channel estimation (LMS).py │ ├── channel estimation (LS).py │ └── result │ │ ├── BER for channel estimation (KL expansion, block_type_pilot, L=1, fd=10Hz).png │ │ ├── BER for channel estimation (KL expansion, block_type_pilot, L=1, fd=1Hz).png │ │ ├── BER for channel estimation (KL expansion, block_type_pilot, L=1, fd=30Hz).png │ │ ├── BER for channel estimation (KL expansion, block_type_pilot, L=10, fd=10Hz).png │ │ ├── BER for channel estimation (KL expansion, block_type_pilot, L=3, fd=10Hz).png │ │ ├── BER for channel estimation (KL expansion, block_type_pilot, L=3, fd=1Hz).png │ │ ├── BER for channel estimation (KL expansion, comb_type_pilot, L=1).png │ │ ├── BER for channel estimation (KL expansion, comb_type_pilot, L=10).png │ │ ├── BER for channel estimation (KL expansion, comb_type_pilot, L=5).png │ │ ├── BER for channel estimation (LMS iteration_time=100, L=3, BPSK).png │ │ ├── BER for channel estimation (LMS iteration_time=100, L=3, QPSK).png │ │ ├── BER for channel estimation (LMS iteration_time=1000, L=3, BPSK).png │ │ ├── BER for channel estimation (LMS iteration_time=1000, L=3, QPSK).png │ │ ├── BER for channel estimation (LMS iteration_time=950, L=3, BPSK).png │ │ ├── BER for channel estimation (LMS iteration_time=950, L=3, QPSK).png │ │ ├── BER for channel estimation (LS).png │ │ ├── MSE for channel estimation (KL expansion, block_type_pilot, L=1, fd=10Hz).png │ │ ├── MSE for channel estimation (KL expansion, block_type_pilot, L=1, fd=1Hz).png │ │ ├── MSE for channel estimation (KL expansion, block_type_pilot, L=1, fd=30Hz).png │ │ ├── MSE for channel estimation (KL expansion, block_type_pilot, L=10, fd=10Hz).png │ │ ├── MSE for channel estimation (KL expansion, block_type_pilot, L=3, fd=10Hz).png │ │ ├── MSE for channel estimation (KL expansion, block_type_pilot, L=3, fd=1Hz).png │ │ ├── MSE for channel estimation (KL expansion, comb_type_pilot, L=1).png │ │ ├── MSE for channel estimation (KL expansion, comb_type_pilot, L=10).png │ │ ├── MSE for channel estimation (KL expansion, comb_type_pilot, L=5).png │ │ ├── MSE for channel estimation (LMS iteration_time=100, L=3, BPSK).png │ │ ├── MSE for channel estimation (LMS iteration_time=100, L=3, QPSK).png │ │ ├── MSE for channel estimation (LMS iteration_time=1000, L=3, BPSK).png │ │ ├── MSE for channel estimation (LMS iteration_time=1000, L=3, QPSK).png │ │ ├── MSE for channel estimation (LMS iteration_time=950, L=3, BPSK).png │ │ ├── MSE for channel estimation (LMS iteration_time=950, L=3, QPSK).png │ │ └── MSE for channel estimation (LS).png └── synchronization │ ├── CFO estimation(time domain).py │ ├── STO estimation(frequency domain).py │ ├── STO estimation(time domain).py │ ├── constellation effected by CFO(single carrier).py │ ├── constellation effected by CFO.py │ ├── constellation effected by STO.py │ ├── result │ ├── MSE of time-domain CFO estimation.png │ ├── constellation (effected by CFO) in single-carrier(not OFDM system).png │ ├── constellation (effected by CFO).png │ ├── constellation (effected by STO).png │ ├── effect of CFO on the phase of the time-domain signal.png │ ├── probability of STO estimation (frequency-domain estimation) (phase-rotation).png │ ├── probability of STO estimation (time-domain estimation) (correlation-based).png │ ├── probability of STO estimation (time-domain estimation) (min-difference).png │ ├── probability of STO estimation (time-domain estimation) (min-squared-difference).png │ ├── time-domain STO estimation result(iteration time=1).png │ └── time-domain STO estimation result(iteration time=100).png │ └── the effect of CFO on the OFDM symbol.py ├── README.md ├── SISO ├── M-QAM (rayleigh).py ├── M-QAM.py ├── M-psk (rayleigh).py ├── M-psk.py └── result │ ├── 16QAM (rayleigh).png │ ├── 16QAM.png │ ├── 16QAM、64QAM (rayleigh).png │ ├── 16QAM、64QAM.png │ ├── bpsk、qpsk、8-psk(rayleigh).png │ └── bpsk、qpsk、8-psk.png ├── error control coding ├── Hamming code with hard-decision & soft-decision.py ├── Hard and Soft decision decoding.docx └── result │ └── (7,4) Hamming code with hard-decision & soft-decision.png ├── get-pip.py ├── img ├── Python-35.jpg ├── fundamental of wireless communication.jpg ├── matplotlib.png ├── mimo-ofdm wireless communications with matlab.jpg ├── numpy.jpg ├── pycharm-edu.png ├── python教學001.png └── scipy.png ├── lib └── site-packages │ └── simulation │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-35.pyc │ └── multipath.cpython-35.pyc │ └── multipath.py ├── tutorial └── 常用matplotlib用法教學.docx └── wireless channel ├── path loss.py ├── rayleigh channel.py └── result ├── free-space_path_loss_model.png ├── log-distance_path_loss_model.png ├── log-normal_shadowing_path_loss_model.png ├── pdf for real part of fading channel.png ├── rayleigh envelope , fd=100Hz (path1).png ├── rayleigh envelope , fd=100Hz (path2).png ├── rayleigh envelope , fd=10Hz (path1).png ├── rayleigh envelope , fd=10Hz (path2).png ├── rayleigh envelope , fd=50Hz (path1).png └── rayleigh envelope , fd=50Hz (path2).png /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MIMO/MU-MIMO/block diagonalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/block diagonalization.py -------------------------------------------------------------------------------- /MIMO/MU-MIMO/channel inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/channel inversion.py -------------------------------------------------------------------------------- /MIMO/MU-MIMO/dirty paper coding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/dirty paper coding.py -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/DPC(Nb=4, Nm=1, user=10, select_user=4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/DPC(Nb=4, Nm=1, user=10, select_user=4).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/DPC(Nb=4, Nm=2, user=10, select_user=2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/DPC(Nb=4, Nm=2, user=10, select_user=2).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=1, user=10, select_user=4, MMSE detection).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=1, user=10, select_user=4, MMSE detection).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=1, user=10, select_user=4, ZF detection).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=1, user=10, select_user=4, ZF detection).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=1, user=20, select_user=4, MMSE detection).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=1, user=20, select_user=4, MMSE detection).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=1, user=20, select_user=4, ZF detection).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=1, user=20, select_user=4, ZF detection).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=2, user=10, select_user=2, MMSE detection).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=2, user=10, select_user=2, MMSE detection).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=2, user=10, select_user=2, ZF detection).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=2, user=10, select_user=2, ZF detection).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=2, user=20, select_user=2, MMSE detection).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=2, user=20, select_user=2, MMSE detection).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=2, user=20, select_user=2, ZF detection).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/block diagonalization(Nb=4, Nm=2, user=20, select_user=2, ZF detection).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/channel inversion(Nb=4, Nm=1, user=10, select_user=4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/channel inversion(Nb=4, Nm=1, user=10, select_user=4).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/channel inversion(Nb=4, Nm=1, user=20, select_user=4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/channel inversion(Nb=4, Nm=1, user=20, select_user=4).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/channel inversion(Nb=4, Nm=2, user=10, select_user=2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/channel inversion(Nb=4, Nm=2, user=10, select_user=2).png -------------------------------------------------------------------------------- /MIMO/MU-MIMO/result/channel inversion(Nb=4, Nm=2, user=20, select_user=2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/MU-MIMO/result/channel inversion(Nb=4, Nm=2, user=20, select_user=2).png -------------------------------------------------------------------------------- /MIMO/Maximal Ratio Combining(MBC).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/Maximal Ratio Combining(MBC).png -------------------------------------------------------------------------------- /MIMO/Maximal Ratio Combining(MBC).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/Maximal Ratio Combining(MBC).py -------------------------------------------------------------------------------- /MIMO/channel capacity/ergodic_capacity(optimum antenna selection).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/ergodic_capacity(optimum antenna selection).py -------------------------------------------------------------------------------- /MIMO/channel capacity/ergodic_capacity(sub-optimal antenna selection).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/ergodic_capacity(sub-optimal antenna selection).py -------------------------------------------------------------------------------- /MIMO/channel capacity/ergodic_capacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/ergodic_capacity.py -------------------------------------------------------------------------------- /MIMO/channel capacity/ergodic_capacity_CDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/ergodic_capacity_CDF.py -------------------------------------------------------------------------------- /MIMO/channel capacity/ergodic_capacity_correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/ergodic_capacity_correlation.py -------------------------------------------------------------------------------- /MIMO/channel capacity/open-loop & close-loop channel capacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/open-loop & close-loop channel capacity.py -------------------------------------------------------------------------------- /MIMO/channel capacity/result/ergodic channel capacity (unknown CSI).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/result/ergodic channel capacity (unknown CSI).png -------------------------------------------------------------------------------- /MIMO/channel capacity/result/ergodic correlated channel capacity (unknown CSI).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/result/ergodic correlated channel capacity (unknown CSI).png -------------------------------------------------------------------------------- /MIMO/channel capacity/result/ergodic_capacity_CDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/result/ergodic_capacity_CDF.png -------------------------------------------------------------------------------- /MIMO/channel capacity/result/optimum antenna selection for ergodic channel capacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/result/optimum antenna selection for ergodic channel capacity.png -------------------------------------------------------------------------------- /MIMO/channel capacity/result/sub-optimum antenna selection for ergodic channel capacity (ascending order).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/result/sub-optimum antenna selection for ergodic channel capacity (ascending order).png -------------------------------------------------------------------------------- /MIMO/channel capacity/result/sub-optimum antenna selection for ergodic channel capacity (decending order).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/result/sub-optimum antenna selection for ergodic channel capacity (decending order).png -------------------------------------------------------------------------------- /MIMO/channel capacity/result/water_filling for known channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/channel capacity/result/water_filling for known channel.png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/ML detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/ML detection.py -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for 16QAM (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for 16QAM (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for 16QAM (non-normalize)(Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for 16QAM (non-normalize)(Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for 64QAM (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for 64QAM (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for 64QAM (non-normalize)(Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for 64QAM (non-normalize)(Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for BPSK (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for BPSK (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for BPSK (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for BPSK (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for BPSK (non-normalize)(Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for BPSK (non-normalize)(Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for BPSK (non-normalize)(Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for BPSK (non-normalize)(Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for QPSK (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for QPSK (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for QPSK (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for QPSK (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for QPSK (non-normalize)(Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for QPSK (non-normalize)(Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/non-normalize/ML detection for QPSK (non-normalize)(Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/non-normalize/ML detection for QPSK (non-normalize)(Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/normalize/ML detection for 16QAM (normalize)(Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/normalize/ML detection for 16QAM (normalize)(Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/normalize/ML detection for 16QAM (normalize)(Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/normalize/ML detection for 16QAM (normalize)(Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/normalize/ML detection for 64QAM (normalize)(Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/normalize/ML detection for 64QAM (normalize)(Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/normalize/ML detection for 64QAM (normalize)(Nt=4, Nr=4) part2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/normalize/ML detection for 64QAM (normalize)(Nt=4, Nr=4) part2.dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/normalize/ML detection for 64QAM (normalize)(Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/normalize/ML detection for 64QAM (normalize)(Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/normalize/ML detection for BPSK (normalize)(Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/normalize/ML detection for BPSK (normalize)(Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/normalize/ML detection for BPSK (normalize)(Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/normalize/ML detection for BPSK (normalize)(Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/normalize/ML detection for QPSK (normalize)(Nt=2, Nr=2) part2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/normalize/ML detection for QPSK (normalize)(Nt=2, Nr=2) part2.dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/normalize/ML detection for QPSK (normalize)(Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/normalize/ML detection for QPSK (normalize)(Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/data/normalize/ML detection for QPSK (normalize)(Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/data/normalize/ML detection for QPSK (normalize)(Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/non-normalize/ML detection for 2x2 MIMO (BPSK, QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/non-normalize/ML detection for 2x2 MIMO (BPSK, QPSK).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/non-normalize/ML for 2x2 MIMO detection(16QAM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/non-normalize/ML for 2x2 MIMO detection(16QAM).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/non-normalize/ML for 2x2 MIMO detection(64QAM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/non-normalize/ML for 2x2 MIMO detection(64QAM).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/non-normalize/ML for 2x2 MIMO detection(BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/non-normalize/ML for 2x2 MIMO detection(BPSK).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/non-normalize/ML for 2x2 MIMO detection(QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/non-normalize/ML for 2x2 MIMO detection(QPSK).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/non-normalize/ML for 4x4 MIMO detection(BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/non-normalize/ML for 4x4 MIMO detection(BPSK).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/non-normalize/ML for 4x4 MIMO detection(QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/non-normalize/ML for 4x4 MIMO detection(QPSK).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/normalize/ML for 2x2 MIMO detection(16QAM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/normalize/ML for 2x2 MIMO detection(16QAM).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/normalize/ML for 2x2 MIMO detection(64QAM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/normalize/ML for 2x2 MIMO detection(64QAM).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/normalize/ML for 2x2 MIMO detection(BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/normalize/ML for 2x2 MIMO detection(BPSK).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/normalize/ML for 2x2 MIMO detection(QPSK) part2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/normalize/ML for 2x2 MIMO detection(QPSK) part2.png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/normalize/ML for 2x2 MIMO detection(QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/normalize/ML for 2x2 MIMO detection(QPSK).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/normalize/ML for 4x4 MIMO detection(16QAM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/normalize/ML for 4x4 MIMO detection(16QAM).png -------------------------------------------------------------------------------- /MIMO/detection/ML detection/result/normalize/ML for 4x4 MIMO detection(QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ML detection/result/normalize/ML for 4x4 MIMO detection(QPSK).png -------------------------------------------------------------------------------- /MIMO/detection/QRM-MLD method/QRM-MLD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/QRM-MLD method/QRM-MLD.py -------------------------------------------------------------------------------- /MIMO/detection/SIC detection/MMSE-SIC detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/SIC detection/MMSE-SIC detection.py -------------------------------------------------------------------------------- /MIMO/detection/SIC detection/ZF-SIC detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/SIC detection/ZF-SIC detection.py -------------------------------------------------------------------------------- /MIMO/detection/SIC detection/result/MMSE-SIC、MMSE-SIC-sort for 2x2 MIMO detection(BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/SIC detection/result/MMSE-SIC、MMSE-SIC-sort for 2x2 MIMO detection(BPSK).png -------------------------------------------------------------------------------- /MIMO/detection/SIC detection/result/ZF-SIC、ZF-SIC-sort for 2x2 MIMO detection(BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/SIC detection/result/ZF-SIC、ZF-SIC-sort for 2x2 MIMO detection(BPSK).png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/ZF_MMSE detection with antenna selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/ZF_MMSE detection with antenna selection.py -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/ZF_MMSE detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/ZF_MMSE detection.py -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for 16QAM (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for 16QAM (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for 16QAM (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for 16QAM (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for 64QAM (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for 64QAM (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for 64QAM (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for 64QAM (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for BPSK (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for BPSK (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for BPSK (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for BPSK (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for QPSK (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for QPSK (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for QPSK (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/MMSE detection for QPSK (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/README.md -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for 16QAM (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for 16QAM (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for 16QAM (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for 16QAM (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for 64QAM (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for 64QAM (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for 64QAM (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for 64QAM (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for BPSK (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for BPSK (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for BPSK (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for BPSK (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for QPSK (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for QPSK (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for QPSK (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/non-normalize/ZF detection for QPSK (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/normalize/MMSE detection for QPSK (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/normalize/MMSE detection for QPSK (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/normalize/MMSE detection for QPSK (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/normalize/MMSE detection for QPSK (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/normalize/ZF detection for QPSK (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/normalize/ZF detection for QPSK (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/data/normalize/ZF detection for QPSK (Nt=4, Nr=4).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/data/normalize/ZF detection for QPSK (Nt=4, Nr=4).dat -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 2x2 MIMO detection(16QAM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 2x2 MIMO detection(16QAM).png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 2x2 MIMO detection(64QAM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 2x2 MIMO detection(64QAM).png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 2x2 MIMO detection(BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 2x2 MIMO detection(BPSK).png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 2x2 MIMO detection(QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 2x2 MIMO detection(QPSK).png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x2 MIMO detection(16QAM) with antenna selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x2 MIMO detection(16QAM) with antenna selection.png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x2 MIMO detection(64QAM) with antenna selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x2 MIMO detection(64QAM) with antenna selection.png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x2 MIMO detection(BPSK) with antenna selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x2 MIMO detection(BPSK) with antenna selection.png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x2 MIMO detection(QPSK) with antenna selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x2 MIMO detection(QPSK) with antenna selection.png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x4 MIMO detection(16QAM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x4 MIMO detection(16QAM).png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x4 MIMO detection(64QAM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x4 MIMO detection(64QAM).png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x4 MIMO detection(BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x4 MIMO detection(BPSK).png -------------------------------------------------------------------------------- /MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x4 MIMO detection(QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/ZF and MMSE detection/result/ZF、MMSE for 4x4 MIMO detection(QPSK).png -------------------------------------------------------------------------------- /MIMO/detection/gradient search/gradient search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/gradient search/gradient search.py -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/16QAM/sphere decoding for 16QAM, soft = 1, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/16QAM/sphere decoding for 16QAM, soft = 1, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/16QAM/sphere decoding for 16QAM, soft = 2, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/16QAM/sphere decoding for 16QAM, soft = 2, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/16QAM/sphere decoding for 16QAM, soft = 3, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/16QAM/sphere decoding for 16QAM, soft = 3, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/16QAM/sphere decoding for 16QAM, soft = 4, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/16QAM/sphere decoding for 16QAM, soft = 4, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 1, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 1, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 2, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 2, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 3, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 3, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 4, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 4, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 5, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 5, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 6, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 6, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 7, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 7, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 8, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/64QAM/sphere decoding for 64QAM, soft = 8, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/QPSK/sphere decoding for QPSK, soft = 1, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/QPSK/sphere decoding for QPSK, soft = 1, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/QPSK/sphere decoding for QPSK, soft = 2, DFS (Nt=2, Nr=2).dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/data/v2 soft/normalize/2x2/QPSK/sphere decoding for QPSK, soft = 2, DFS (Nt=2, Nr=2).dat -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/plot Addition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/plot Addition.py -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/plot BER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/plot BER.py -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/plot Multiplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/plot Multiplication.py -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/plot Visit node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/plot Visit node.py -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/Addition_complexity for 2x2 MIMO (QPSK)(BFS K=2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/Addition_complexity for 2x2 MIMO (QPSK)(BFS K=2).png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/Addition_complexity for 2x2 MIMO (QPSK)(DFS).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/Addition_complexity for 2x2 MIMO (QPSK)(DFS).png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/Average_visited_node for 2x2 MIMO (QPSK)(BFS K=2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/Average_visited_node for 2x2 MIMO (QPSK)(BFS K=2).png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/Average_visited_node for 2x2 MIMO (QPSK)(DFS).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/Average_visited_node for 2x2 MIMO (QPSK)(DFS).png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/BER of sphere decoding for 2x2 MIMO (QPSK)(BFS K=2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/BER of sphere decoding for 2x2 MIMO (QPSK)(BFS K=2).png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/BER of sphere decoding for 2x2 MIMO (QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/BER of sphere decoding for 2x2 MIMO (QPSK).png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/Multiplication_complexity for 2x2 MIMO (QPSK)(DFS).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v1 origin/non-normalize/2x2/Multiplication_complexity for 2x2 MIMO (QPSK)(DFS).png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=1,_BFS,_K=2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=1,_BFS,_K=2.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=1,_BFS,_K=3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=1,_BFS,_K=3.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=1,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=1,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=2,_BFS,_K=2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=2,_BFS,_K=2.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=2,_BFS,_K=3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=2,_BFS,_K=3.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=2,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=2,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=3,_BFS,_K=2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=3,_BFS,_K=2.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=3,_BFS,_K=3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=3,_BFS,_K=3.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=3,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=3,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=3,_BFS,_K=5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=3,_BFS,_K=5.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=3,_BFS,_K=6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=3,_BFS,_K=6.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=4,_BFS,_K=10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=4,_BFS,_K=10.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=4,_BFS,_K=11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM),_soft=4,_BFS,_K=11.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Addition_complexity(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Average_visited_node(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Average_visited_node(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=1,_BFS,_K=2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=1,_BFS,_K=2.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=1,_BFS,_K=3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=1,_BFS,_K=3.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=1,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=1,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=2,_BFS,_K=2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=2,_BFS,_K=2.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=2,_BFS,_K=3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=2,_BFS,_K=3.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=2,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=2,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=3,_BFS,_K=2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=3,_BFS,_K=2.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=3,_BFS,_K=3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=3,_BFS,_K=3.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=3,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=3,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=3,_BFS,_K=5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=3,_BFS,_K=5.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=3,_BFS,_K=6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=3,_BFS,_K=6.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=10.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=11.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=12.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=2.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=3.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=5.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=6.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=7.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=8.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM),_soft=4,_BFS,_K=9.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/BER(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Multiplication_complexity(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/BFS/Multiplication_complexity(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/Best First Search/BER(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/Best First Search/BER(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Addition_complexity(16QAM),_soft=1,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Addition_complexity(16QAM),_soft=1,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Addition_complexity(16QAM),_soft=2,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Addition_complexity(16QAM),_soft=2,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Addition_complexity(16QAM),_soft=3,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Addition_complexity(16QAM),_soft=3,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Addition_complexity(16QAM),_soft=4,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Addition_complexity(16QAM),_soft=4,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Addition_complexity(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Addition_complexity(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Average_visited_node(16QAM),_soft=1,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Average_visited_node(16QAM),_soft=1,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Average_visited_node(16QAM),_soft=2,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Average_visited_node(16QAM),_soft=2,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Average_visited_node(16QAM),_soft=3,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Average_visited_node(16QAM),_soft=3,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Average_visited_node(16QAM),_soft=4,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Average_visited_node(16QAM),_soft=4,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Average_visited_node(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Average_visited_node(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/BER(16QAM),_soft=1,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/BER(16QAM),_soft=1,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/BER(16QAM),_soft=2,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/BER(16QAM),_soft=2,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/BER(16QAM),_soft=3,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/BER(16QAM),_soft=3,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/BER(16QAM),_soft=4,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/BER(16QAM),_soft=4,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/BER(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/BER(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Multiplication_complexity(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/16QAM/DFS/Multiplication_complexity(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/Addition_complexity(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/Addition_complexity(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/Average_visited_node(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/Average_visited_node(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=1,_BFS,_K=12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=1,_BFS,_K=12.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=1,_BFS,_K=16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=1,_BFS,_K=16.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=1,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=1,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=1,_BFS,_K=8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=1,_BFS,_K=8.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=2,_BFS,_K=12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=2,_BFS,_K=12.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=2,_BFS,_K=16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=2,_BFS,_K=16.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=2,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=2,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=2,_BFS,_K=8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=2,_BFS,_K=8.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=3,_BFS,_K=12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=3,_BFS,_K=12.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=3,_BFS,_K=16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=3,_BFS,_K=16.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=3,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=3,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=3,_BFS,_K=8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=3,_BFS,_K=8.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=4,_BFS,_K=12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=4,_BFS,_K=12.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=4,_BFS,_K=16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=4,_BFS,_K=16.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=4,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=4,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=4,_BFS,_K=8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=4,_BFS,_K=8.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=5,_BFS,_K=12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=5,_BFS,_K=12.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=5,_BFS,_K=16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=5,_BFS,_K=16.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=5,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=5,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=5,_BFS,_K=8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=5,_BFS,_K=8.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=6,_BFS,_K=12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=6,_BFS,_K=12.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=6,_BFS,_K=16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=6,_BFS,_K=16.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=6,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=6,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=6,_BFS,_K=8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=6,_BFS,_K=8.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=7,_BFS,_K=12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=7,_BFS,_K=12.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=7,_BFS,_K=16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=7,_BFS,_K=16.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=7,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=7,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=7,_BFS,_K=8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=7,_BFS,_K=8.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=8,_BFS,_K=12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=8,_BFS,_K=12.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=8,_BFS,_K=16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=8,_BFS,_K=16.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=8,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=8,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=8,_BFS,_K=8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM),_soft=8,_BFS,_K=8.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/BER(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/Multiplication_complexity(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/BFS/Multiplication_complexity(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/Best First Search/BER(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/Best First Search/BER(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=1,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=1,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=2,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=2,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=3,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=3,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=4,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=4,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=5,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=5,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=6,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=6,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=7,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=7,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=8,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM),_soft=8,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Addition_complexity(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=1,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=1,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=2,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=2,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=3,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=3,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=4,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=4,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=5,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=5,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=6,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=6,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=7,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=7,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=8,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM),_soft=8,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Average_visited_node(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=1,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=1,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=2,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=2,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=3,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=3,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=4,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=4,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=5,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=5,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=6,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=6,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=7,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=7,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=8,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM),_soft=8,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/BER(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Multiplication_complexity(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/64QAM/DFS/Multiplication_complexity(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK),_soft=1,_BFS,_K=2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK),_soft=1,_BFS,_K=2.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK),_soft=1,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK),_soft=1,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK),_soft=2,_BFS,_K=2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK),_soft=2,_BFS,_K=2.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK),_soft=2,_BFS,_K=3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK),_soft=2,_BFS,_K=3.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK),_soft=2,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK),_soft=2,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Addition_complexity(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Average_visited_node(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Average_visited_node(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK),_soft=1,_BFS,_K=2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK),_soft=1,_BFS,_K=2.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK),_soft=1,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK),_soft=1,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK),_soft=2,_BFS,_K=2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK),_soft=2,_BFS,_K=2.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK),_soft=2,_BFS,_K=3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK),_soft=2,_BFS,_K=3.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK),_soft=2,_BFS,_K=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK),_soft=2,_BFS,_K=4.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/BER(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Multiplication_complexity(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/BFS/Multiplication_complexity(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/Best First Search/Addition_complexity(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/Best First Search/Addition_complexity(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/Best First Search/Average_visited_node(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/Best First Search/Average_visited_node(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/Best First Search/BER(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/Best First Search/BER(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Addition_complexity(QPSK),_soft=1,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Addition_complexity(QPSK),_soft=1,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Addition_complexity(QPSK),_soft=2,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Addition_complexity(QPSK),_soft=2,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Addition_complexity(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Addition_complexity(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Average_visited_node(QPSK),_soft=1,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Average_visited_node(QPSK),_soft=1,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Average_visited_node(QPSK),_soft=2,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Average_visited_node(QPSK),_soft=2,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Average_visited_node(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Average_visited_node(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/BER(QPSK),_soft=1,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/BER(QPSK),_soft=1,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/BER(QPSK),_soft=2,_DFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/BER(QPSK),_soft=2,_DFS.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/BER(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/BER(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Multiplication_complexity(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/non-normalize/2x2/QPSK/DFS/Multiplication_complexity(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/16QAM/Best First Search/Addition_complexity(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/16QAM/Best First Search/Addition_complexity(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/16QAM/Best First Search/Average_visited_node(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/16QAM/Best First Search/Average_visited_node(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/16QAM/Best First Search/BER(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/16QAM/Best First Search/BER(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/64QAM/Best First Search/Addition_complexity(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/64QAM/Best First Search/Addition_complexity(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/64QAM/Best First Search/Average_visited_node(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/64QAM/Best First Search/Average_visited_node(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/64QAM/Best First Search/BER(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/64QAM/Best First Search/BER(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/QPSK/Best First Search/Addition_complexity(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/QPSK/Best First Search/Addition_complexity(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/QPSK/Best First Search/Average_visited_node(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/QPSK/Best First Search/Average_visited_node(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/QPSK/Best First Search/BER(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/2x2/QPSK/Best First Search/BER(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/16QAM/Best First Search/Addition_complexity(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/16QAM/Best First Search/Addition_complexity(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/16QAM/Best First Search/Average_visited_node(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/16QAM/Best First Search/Average_visited_node(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/16QAM/Best First Search/BER(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/16QAM/Best First Search/BER(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/64QAM/Best First Search/Addition_complexity(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/64QAM/Best First Search/Addition_complexity(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/64QAM/Best First Search/Average_visited_node(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/64QAM/Best First Search/Average_visited_node(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/64QAM/Best First Search/BER(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/64QAM/Best First Search/BER(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/QPSK/Best First Search/Addition_complexity(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/QPSK/Best First Search/Addition_complexity(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/QPSK/Best First Search/Average_visited_node(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/QPSK/Best First Search/Average_visited_node(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/QPSK/Best First Search/BER(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v2 soft/normalize/4x4/QPSK/Best First Search/BER(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Addition_complexity(QPSK)(BFS)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Addition_complexity(QPSK)(BFS)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Addition_complexity(QPSK)(DFS)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Addition_complexity(QPSK)(DFS)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Average_visited_node(QPSK)(BFS)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Average_visited_node(QPSK)(BFS)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Average_visited_node(QPSK)(DFS)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Average_visited_node(QPSK)(DFS)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/BER(QPSK)(BFS)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/BER(QPSK)(BFS)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/BER(QPSK)(Best First Search)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/BER(QPSK)(Best First Search)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/BER(QPSK)(DFS)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/BER(QPSK)(DFS)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Multiplication_complexity(QPSK)(BFS)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Multiplication_complexity(QPSK)(BFS)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Multiplication_complexity(QPSK)(DFS)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/non-normalize/2x2/QPSK/Multiplication_complexity(QPSK)(DFS)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/2x2/16QAM/Best First Search/BER(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/2x2/16QAM/Best First Search/BER(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/2x2/64QAM/Best First Search/BER(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/2x2/64QAM/Best First Search/BER(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/2x2/QPSK/Best First Search/BER(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/2x2/QPSK/Best First Search/BER(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/4x4/16QAM/Best First Search/BER(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/4x4/16QAM/Best First Search/BER(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/4x4/64QAM/Best First Search/BER(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/4x4/64QAM/Best First Search/BER(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/4x4/QPSK/Best First Search/BER(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v3 soft_vector/normalize/4x4/QPSK/Best First Search/BER(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v4 OSIC/non-normalize/2x2/BER(OSIC)(16QAM),_soft=1,_Best_First_Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v4 OSIC/non-normalize/2x2/BER(OSIC)(16QAM),_soft=1,_Best_First_Search.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v4 OSIC/non-normalize/2x2/BER(OSIC)(64QAM),_soft=1,_Best_First_Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v4 OSIC/non-normalize/2x2/BER(OSIC)(64QAM),_soft=1,_Best_First_Search.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v4 OSIC/non-normalize/2x2/BER(OSIC)(QPSK),_soft=1,_Best_First_Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v4 OSIC/non-normalize/2x2/BER(OSIC)(QPSK),_soft=1,_Best_First_Search.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v5 dynamic algorithm/normalize/2x2/16QAM/Best First Search/BER(16QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v5 dynamic algorithm/normalize/2x2/16QAM/Best First Search/BER(16QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v5 dynamic algorithm/normalize/2x2/64QAM/Best First Search/BER(64QAM)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v5 dynamic algorithm/normalize/2x2/64QAM/Best First Search/BER(64QAM)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v5 dynamic algorithm/normalize/2x2/QPSK/Best First Search/BER(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v5 dynamic algorithm/normalize/2x2/QPSK/Best First Search/BER(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/result/v5 dynamic algorithm/normalize/4x4/QPSK/Best First Search/BER(QPSK)總整理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/result/v5 dynamic algorithm/normalize/4x4/QPSK/Best First Search/BER(QPSK)總整理.png -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/sphere decoding(better initial vector) v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/sphere decoding(better initial vector) v4.py -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/sphere decoding(dynamical soft value) v5 .py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/sphere decoding(dynamical soft value) v5 .py -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/sphere decoding(origin) v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/sphere decoding(origin) v1.py -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/sphere decoding(static branch vector) v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/sphere decoding(static branch vector) v3.py -------------------------------------------------------------------------------- /MIMO/detection/sphere decoding/sphere decoding(static branch) v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/detection/sphere decoding/sphere decoding(static branch) v2.py -------------------------------------------------------------------------------- /MIMO/space-time coding/Alamouti_2x1_antenna_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/space-time coding/Alamouti_2x1_antenna_selection.py -------------------------------------------------------------------------------- /MIMO/space-time coding/Alamouti_2x1_precoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/space-time coding/Alamouti_2x1_precoding.py -------------------------------------------------------------------------------- /MIMO/space-time coding/Alamouti_scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/space-time coding/Alamouti_scheme.py -------------------------------------------------------------------------------- /MIMO/space-time coding/result/Alamouti_2x1_antenna_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/space-time coding/result/Alamouti_2x1_antenna_selection.png -------------------------------------------------------------------------------- /MIMO/space-time coding/result/Alamouti_2x1_precoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/space-time coding/result/Alamouti_2x1_precoding.png -------------------------------------------------------------------------------- /MIMO/space-time coding/result/Alamouti_scheme(2x2)(BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/space-time coding/result/Alamouti_scheme(2x2)(BPSK).png -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/Alamouti_2x1_antenna_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/Alamouti_2x1_antenna_selection.py -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/Alamouti_2x1_precoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/Alamouti_2x1_precoding.py -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/ZF_MMSE detection with antenna selection.py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/ZF_MMSE detection with antenna selection.py.py -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/ZF_MMSE pre-qualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/ZF_MMSE pre-qualization.py -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/ergodic_capacity(optimum antenna selection).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/ergodic_capacity(optimum antenna selection).py -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/ergodic_capacity(sub-optimal antenna selection).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/ergodic_capacity(sub-optimal antenna selection).py -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/result/Alamouti_2x1_antenna_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/result/Alamouti_2x1_antenna_selection.png -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/result/Alamouti_2x1_precoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/result/Alamouti_2x1_precoding.png -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/result/ZF_MMSE detection with antenna selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/result/ZF_MMSE detection with antenna selection.png -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/result/ZF_MMSE pre-equalization(diversity order = 1, Nt=Nr=2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/result/ZF_MMSE pre-equalization(diversity order = 1, Nt=Nr=2).png -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/result/ZF_MMSE pre-equalization(diversity order = 1, Nt=Nr=4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/result/ZF_MMSE pre-equalization(diversity order = 1, Nt=Nr=4).png -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/result/ZF_MMSE pre-equalization(diversity order = 2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/result/ZF_MMSE pre-equalization(diversity order = 2).png -------------------------------------------------------------------------------- /MIMO/using CSI at the transmitter/result/optimum antenna selection for ergodic channel capacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/MIMO/using CSI at the transmitter/result/optimum antenna selection for ergodic channel capacity.png -------------------------------------------------------------------------------- /OFDM/BER for BPSK in OFDM with Rayleigh multipath channel.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/BER for BPSK in OFDM with Rayleigh multipath channel.docx -------------------------------------------------------------------------------- /OFDM/BER for BPSK in Rayleigh channel.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/BER for BPSK in Rayleigh channel.docx -------------------------------------------------------------------------------- /OFDM/BPSK BER with OFDM modulation.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/BPSK BER with OFDM modulation.docx -------------------------------------------------------------------------------- /OFDM/PAPR reduction/CCDF PAPR DFT-spreading(pulse shaping).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/CCDF PAPR DFT-spreading(pulse shaping).py -------------------------------------------------------------------------------- /OFDM/PAPR reduction/CCDF PAPR DFT-spreading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/CCDF PAPR DFT-spreading.py -------------------------------------------------------------------------------- /OFDM/PAPR reduction/OFDM signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/OFDM signal.py -------------------------------------------------------------------------------- /OFDM/PAPR reduction/PAPR (single carrier).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/PAPR (single carrier).py -------------------------------------------------------------------------------- /OFDM/PAPR reduction/PAPR of Chu sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/PAPR of Chu sequence.py -------------------------------------------------------------------------------- /OFDM/PAPR reduction/PAPR of preamble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/PAPR of preamble.py -------------------------------------------------------------------------------- /OFDM/PAPR reduction/SQNR with quantization clipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/SQNR with quantization clipping.py -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/C80216e-04_241r1_pdf.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/C80216e-04_241r1_pdf.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym0.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym1.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym10.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym100.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym100.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym101.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym101.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym102.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym102.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym103.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym103.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym104.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym104.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym105.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym105.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym106.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym106.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym107.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym107.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym108.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym108.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym109.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym109.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym11.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym110.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym110.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym111.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym111.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym112.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym112.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym113.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym113.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym12.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym13.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym14.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym15.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym16.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym17.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym18.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym19.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym19.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym2.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym20.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym21.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym21.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym22.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym23.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym23.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym24.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym25.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym26.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym27.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym27.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym28.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym28.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym29.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym29.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym3.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym30.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym31.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym31.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym32.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym33.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym33.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym34.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym34.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym35.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym35.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym36.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym37.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym37.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym38.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym38.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym39.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym39.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym4.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym40.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym41.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym41.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym42.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym42.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym43.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym43.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym44.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym44.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym45.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym45.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym46.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym46.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym47.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym47.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym48.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym48.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym49.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym49.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym5.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym50.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym50.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym51.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym51.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym52.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym52.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym53.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym53.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym54.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym54.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym55.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym55.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym56.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym56.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym57.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym57.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym58.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym58.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym59.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym59.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym6.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym60.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym60.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym61.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym61.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym62.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym62.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym63.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym63.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym64.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym64.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym65.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym65.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym66.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym66.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym67.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym67.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym68.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym68.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym69.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym69.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym7.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym70.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym70.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym71.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym71.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym72.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym72.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym73.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym73.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym74.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym74.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym75.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym75.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym76.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym76.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym77.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym77.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym78.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym78.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym79.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym79.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym8.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym80.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym80.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym81.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym81.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym82.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym82.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym83.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym83.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym84.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym84.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym85.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym85.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym86.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym86.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym87.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym87.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym88.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym88.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym89.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym89.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym9.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym90.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym90.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym91.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym91.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym92.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym92.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym93.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym93.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym94.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym94.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym95.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym95.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym96.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym96.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym97.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym97.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym98.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym98.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym99.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/Wibro-Preamble/Preamble_sym99.dat -------------------------------------------------------------------------------- /OFDM/PAPR reduction/compare CCDF PTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/compare CCDF PTS.py -------------------------------------------------------------------------------- /OFDM/PAPR reduction/pdf of clipped and filtered OFDM signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/pdf of clipped and filtered OFDM signal.py -------------------------------------------------------------------------------- /OFDM/PAPR reduction/plot CCDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/plot CCDF.py -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/CCDF of DFT-spreading with pulse shaping(16QAM) , when M varies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/CCDF of DFT-spreading with pulse shaping(16QAM) , when M varies.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/CCDF of DFT-spreading with pulse shaping(16QAM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/CCDF of DFT-spreading with pulse shaping(16QAM).png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/CCDF of DFT-spreading with pulse shaping(QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/CCDF of DFT-spreading with pulse shaping(QPSK).png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/CCDF of DFT-spreading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/CCDF of DFT-spreading.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/CCDF of OFDM signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/CCDF of OFDM signal.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/Characteristics of an equiripple passband FIR filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/Characteristics of an equiripple passband FIR filter.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/PAPR of Chu sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/PAPR of Chu sequence.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/PAPR of preamble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/PAPR of preamble.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/PSD of baseband and passband signal , pdf of unclipped passband signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/PSD of baseband and passband signal , pdf of unclipped passband signal.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/SQNR of quantized OFDM signal against the clipping level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/SQNR of quantized OFDM signal against the clipping level.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/baseband, passband signals for 16QAM-modulated symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/baseband, passband signals for 16QAM-modulated symbols.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/baseband, passband signals for BPSK-modulated symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/baseband, passband signals for BPSK-modulated symbols.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/baseband, passband signals for QPSK-modulated symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/baseband, passband signals for QPSK-modulated symbols.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/performance analysis of PTS technique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/performance analysis of PTS technique.png -------------------------------------------------------------------------------- /OFDM/PAPR reduction/result/time-domain OFDM signals and their PDFs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/PAPR reduction/result/time-domain OFDM signals and their PDFs.png -------------------------------------------------------------------------------- /OFDM/basic structure/inter carrier interference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/inter carrier interference.py -------------------------------------------------------------------------------- /OFDM/basic structure/ofdm modulation(only AWGN).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/ofdm modulation(only AWGN).py -------------------------------------------------------------------------------- /OFDM/basic structure/ofdm modulation(rayleigh multipath channel) .py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/ofdm modulation(rayleigh multipath channel) .py -------------------------------------------------------------------------------- /OFDM/basic structure/power spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/power spectrum.py -------------------------------------------------------------------------------- /OFDM/basic structure/result/Error Magnitude (resulted from ISI).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/result/Error Magnitude (resulted from ISI).png -------------------------------------------------------------------------------- /OFDM/basic structure/result/ofdm PSD(classical_spectrum_estimation).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/result/ofdm PSD(classical_spectrum_estimation).png -------------------------------------------------------------------------------- /OFDM/basic structure/result/ofdm PSD(estimated_by_autocorrelation).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/result/ofdm PSD(estimated_by_autocorrelation).png -------------------------------------------------------------------------------- /OFDM/basic structure/result/ofdm modulation(only AWGN) for 16QAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/result/ofdm modulation(only AWGN) for 16QAM.png -------------------------------------------------------------------------------- /OFDM/basic structure/result/ofdm modulation(only AWGN) for BPSK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/result/ofdm modulation(only AWGN) for BPSK.png -------------------------------------------------------------------------------- /OFDM/basic structure/result/ofdm modulation(only AWGN) for QPSK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/result/ofdm modulation(only AWGN) for QPSK.png -------------------------------------------------------------------------------- /OFDM/basic structure/result/ofdm modulation(rayleigh multipath channel) for 16QAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/result/ofdm modulation(rayleigh multipath channel) for 16QAM.png -------------------------------------------------------------------------------- /OFDM/basic structure/result/ofdm modulation(rayleigh multipath channel) for BPSK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/result/ofdm modulation(rayleigh multipath channel) for BPSK.png -------------------------------------------------------------------------------- /OFDM/basic structure/result/ofdm modulation(rayleigh multipath channel) for QPSK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/result/ofdm modulation(rayleigh multipath channel) for QPSK.png -------------------------------------------------------------------------------- /OFDM/basic structure/result/sinusoial signals with different frequencys, pharses and their DFTs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/result/sinusoial signals with different frequencys, pharses and their DFTs.png -------------------------------------------------------------------------------- /OFDM/basic structure/result/use symbol timing to verify ofdm structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/result/use symbol timing to verify ofdm structure.png -------------------------------------------------------------------------------- /OFDM/basic structure/symbol timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/symbol timing.py -------------------------------------------------------------------------------- /OFDM/basic structure/test_orthogonality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/basic structure/test_orthogonality.py -------------------------------------------------------------------------------- /OFDM/channel estimation/channel estimation (KL expansion for block type).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/channel estimation (KL expansion for block type).py -------------------------------------------------------------------------------- /OFDM/channel estimation/channel estimation (KL expansion for comb type).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/channel estimation (KL expansion for comb type).py -------------------------------------------------------------------------------- /OFDM/channel estimation/channel estimation (LMS).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/channel estimation (LMS).py -------------------------------------------------------------------------------- /OFDM/channel estimation/channel estimation (LS).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/channel estimation (LS).py -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=1, fd=10Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=1, fd=10Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=1, fd=1Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=1, fd=1Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=1, fd=30Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=1, fd=30Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=10, fd=10Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=10, fd=10Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=3, fd=10Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=3, fd=10Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=3, fd=1Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (KL expansion, block_type_pilot, L=3, fd=1Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (KL expansion, comb_type_pilot, L=1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (KL expansion, comb_type_pilot, L=1).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (KL expansion, comb_type_pilot, L=10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (KL expansion, comb_type_pilot, L=10).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (KL expansion, comb_type_pilot, L=5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (KL expansion, comb_type_pilot, L=5).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=100, L=3, BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=100, L=3, BPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=100, L=3, QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=100, L=3, QPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=1000, L=3, BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=1000, L=3, BPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=1000, L=3, QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=1000, L=3, QPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=950, L=3, BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=950, L=3, BPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=950, L=3, QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (LMS iteration_time=950, L=3, QPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/BER for channel estimation (LS).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/BER for channel estimation (LS).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=1, fd=10Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=1, fd=10Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=1, fd=1Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=1, fd=1Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=1, fd=30Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=1, fd=30Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=10, fd=10Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=10, fd=10Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=3, fd=10Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=3, fd=10Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=3, fd=1Hz).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (KL expansion, block_type_pilot, L=3, fd=1Hz).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (KL expansion, comb_type_pilot, L=1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (KL expansion, comb_type_pilot, L=1).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (KL expansion, comb_type_pilot, L=10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (KL expansion, comb_type_pilot, L=10).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (KL expansion, comb_type_pilot, L=5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (KL expansion, comb_type_pilot, L=5).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=100, L=3, BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=100, L=3, BPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=100, L=3, QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=100, L=3, QPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=1000, L=3, BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=1000, L=3, BPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=1000, L=3, QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=1000, L=3, QPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=950, L=3, BPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=950, L=3, BPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=950, L=3, QPSK).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (LMS iteration_time=950, L=3, QPSK).png -------------------------------------------------------------------------------- /OFDM/channel estimation/result/MSE for channel estimation (LS).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/channel estimation/result/MSE for channel estimation (LS).png -------------------------------------------------------------------------------- /OFDM/synchronization/CFO estimation(time domain).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/CFO estimation(time domain).py -------------------------------------------------------------------------------- /OFDM/synchronization/STO estimation(frequency domain).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/STO estimation(frequency domain).py -------------------------------------------------------------------------------- /OFDM/synchronization/STO estimation(time domain).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/STO estimation(time domain).py -------------------------------------------------------------------------------- /OFDM/synchronization/constellation effected by CFO(single carrier).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/constellation effected by CFO(single carrier).py -------------------------------------------------------------------------------- /OFDM/synchronization/constellation effected by CFO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/constellation effected by CFO.py -------------------------------------------------------------------------------- /OFDM/synchronization/constellation effected by STO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/constellation effected by STO.py -------------------------------------------------------------------------------- /OFDM/synchronization/result/MSE of time-domain CFO estimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/result/MSE of time-domain CFO estimation.png -------------------------------------------------------------------------------- /OFDM/synchronization/result/constellation (effected by CFO) in single-carrier(not OFDM system).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/result/constellation (effected by CFO) in single-carrier(not OFDM system).png -------------------------------------------------------------------------------- /OFDM/synchronization/result/constellation (effected by CFO).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/result/constellation (effected by CFO).png -------------------------------------------------------------------------------- /OFDM/synchronization/result/constellation (effected by STO).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/result/constellation (effected by STO).png -------------------------------------------------------------------------------- /OFDM/synchronization/result/effect of CFO on the phase of the time-domain signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/result/effect of CFO on the phase of the time-domain signal.png -------------------------------------------------------------------------------- /OFDM/synchronization/result/probability of STO estimation (frequency-domain estimation) (phase-rotation).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/result/probability of STO estimation (frequency-domain estimation) (phase-rotation).png -------------------------------------------------------------------------------- /OFDM/synchronization/result/probability of STO estimation (time-domain estimation) (correlation-based).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/result/probability of STO estimation (time-domain estimation) (correlation-based).png -------------------------------------------------------------------------------- /OFDM/synchronization/result/probability of STO estimation (time-domain estimation) (min-difference).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/result/probability of STO estimation (time-domain estimation) (min-difference).png -------------------------------------------------------------------------------- /OFDM/synchronization/result/probability of STO estimation (time-domain estimation) (min-squared-difference).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/result/probability of STO estimation (time-domain estimation) (min-squared-difference).png -------------------------------------------------------------------------------- /OFDM/synchronization/result/time-domain STO estimation result(iteration time=1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/result/time-domain STO estimation result(iteration time=1).png -------------------------------------------------------------------------------- /OFDM/synchronization/result/time-domain STO estimation result(iteration time=100).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/result/time-domain STO estimation result(iteration time=100).png -------------------------------------------------------------------------------- /OFDM/synchronization/the effect of CFO on the OFDM symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/OFDM/synchronization/the effect of CFO on the OFDM symbol.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/README.md -------------------------------------------------------------------------------- /SISO/M-QAM (rayleigh).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/SISO/M-QAM (rayleigh).py -------------------------------------------------------------------------------- /SISO/M-QAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/SISO/M-QAM.py -------------------------------------------------------------------------------- /SISO/M-psk (rayleigh).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/SISO/M-psk (rayleigh).py -------------------------------------------------------------------------------- /SISO/M-psk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/SISO/M-psk.py -------------------------------------------------------------------------------- /SISO/result/16QAM (rayleigh).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/SISO/result/16QAM (rayleigh).png -------------------------------------------------------------------------------- /SISO/result/16QAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/SISO/result/16QAM.png -------------------------------------------------------------------------------- /SISO/result/16QAM、64QAM (rayleigh).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/SISO/result/16QAM、64QAM (rayleigh).png -------------------------------------------------------------------------------- /SISO/result/16QAM、64QAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/SISO/result/16QAM、64QAM.png -------------------------------------------------------------------------------- /SISO/result/bpsk、qpsk、8-psk(rayleigh).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/SISO/result/bpsk、qpsk、8-psk(rayleigh).png -------------------------------------------------------------------------------- /SISO/result/bpsk、qpsk、8-psk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/SISO/result/bpsk、qpsk、8-psk.png -------------------------------------------------------------------------------- /error control coding/Hamming code with hard-decision & soft-decision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/error control coding/Hamming code with hard-decision & soft-decision.py -------------------------------------------------------------------------------- /error control coding/Hard and Soft decision decoding.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/error control coding/Hard and Soft decision decoding.docx -------------------------------------------------------------------------------- /error control coding/result/(7,4) Hamming code with hard-decision & soft-decision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/error control coding/result/(7,4) Hamming code with hard-decision & soft-decision.png -------------------------------------------------------------------------------- /get-pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/get-pip.py -------------------------------------------------------------------------------- /img/Python-35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/img/Python-35.jpg -------------------------------------------------------------------------------- /img/fundamental of wireless communication.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/img/fundamental of wireless communication.jpg -------------------------------------------------------------------------------- /img/matplotlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/img/matplotlib.png -------------------------------------------------------------------------------- /img/mimo-ofdm wireless communications with matlab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/img/mimo-ofdm wireless communications with matlab.jpg -------------------------------------------------------------------------------- /img/numpy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/img/numpy.jpg -------------------------------------------------------------------------------- /img/pycharm-edu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/img/pycharm-edu.png -------------------------------------------------------------------------------- /img/python教學001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/img/python教學001.png -------------------------------------------------------------------------------- /img/scipy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/img/scipy.png -------------------------------------------------------------------------------- /lib/site-packages/simulation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/lib/site-packages/simulation/__init__.py -------------------------------------------------------------------------------- /lib/site-packages/simulation/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/lib/site-packages/simulation/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/site-packages/simulation/__pycache__/multipath.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/lib/site-packages/simulation/__pycache__/multipath.cpython-35.pyc -------------------------------------------------------------------------------- /lib/site-packages/simulation/multipath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/lib/site-packages/simulation/multipath.py -------------------------------------------------------------------------------- /tutorial/常用matplotlib用法教學.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/tutorial/常用matplotlib用法教學.docx -------------------------------------------------------------------------------- /wireless channel/path loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/path loss.py -------------------------------------------------------------------------------- /wireless channel/rayleigh channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/rayleigh channel.py -------------------------------------------------------------------------------- /wireless channel/result/free-space_path_loss_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/result/free-space_path_loss_model.png -------------------------------------------------------------------------------- /wireless channel/result/log-distance_path_loss_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/result/log-distance_path_loss_model.png -------------------------------------------------------------------------------- /wireless channel/result/log-normal_shadowing_path_loss_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/result/log-normal_shadowing_path_loss_model.png -------------------------------------------------------------------------------- /wireless channel/result/pdf for real part of fading channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/result/pdf for real part of fading channel.png -------------------------------------------------------------------------------- /wireless channel/result/rayleigh envelope , fd=100Hz (path1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/result/rayleigh envelope , fd=100Hz (path1).png -------------------------------------------------------------------------------- /wireless channel/result/rayleigh envelope , fd=100Hz (path2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/result/rayleigh envelope , fd=100Hz (path2).png -------------------------------------------------------------------------------- /wireless channel/result/rayleigh envelope , fd=10Hz (path1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/result/rayleigh envelope , fd=10Hz (path1).png -------------------------------------------------------------------------------- /wireless channel/result/rayleigh envelope , fd=10Hz (path2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/result/rayleigh envelope , fd=10Hz (path2).png -------------------------------------------------------------------------------- /wireless channel/result/rayleigh envelope , fd=50Hz (path1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/result/rayleigh envelope , fd=50Hz (path1).png -------------------------------------------------------------------------------- /wireless channel/result/rayleigh envelope , fd=50Hz (path2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XassassinXsaberX/communication-simulation/HEAD/wireless channel/result/rayleigh envelope , fd=50Hz (path2).png --------------------------------------------------------------------------------