├── .gitignore ├── @MultiAntennaSystem ├── MultiAntennaSystem.m ├── channel_gen.m ├── multiant_binarymap.m ├── multiant_symbgen.m ├── private │ └── ChannelProfile.m └── rxsignal_gen.m ├── @OFDM ├── OFDM.m ├── OFDM_mod.m ├── RS_gen.m ├── RS_indices.m ├── grid2vec.m └── unused_indices.m ├── @RxBasebandSystem ├── RxBasebandSystem.m └── synchronize.m ├── @SynchSignal └── SynchSignal.m ├── @SystemModel ├── SystemModel.m └── run_system.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/.gitignore -------------------------------------------------------------------------------- /@MultiAntennaSystem/MultiAntennaSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@MultiAntennaSystem/MultiAntennaSystem.m -------------------------------------------------------------------------------- /@MultiAntennaSystem/channel_gen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@MultiAntennaSystem/channel_gen.m -------------------------------------------------------------------------------- /@MultiAntennaSystem/multiant_binarymap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@MultiAntennaSystem/multiant_binarymap.m -------------------------------------------------------------------------------- /@MultiAntennaSystem/multiant_symbgen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@MultiAntennaSystem/multiant_symbgen.m -------------------------------------------------------------------------------- /@MultiAntennaSystem/private/ChannelProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@MultiAntennaSystem/private/ChannelProfile.m -------------------------------------------------------------------------------- /@MultiAntennaSystem/rxsignal_gen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@MultiAntennaSystem/rxsignal_gen.m -------------------------------------------------------------------------------- /@OFDM/OFDM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@OFDM/OFDM.m -------------------------------------------------------------------------------- /@OFDM/OFDM_mod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@OFDM/OFDM_mod.m -------------------------------------------------------------------------------- /@OFDM/RS_gen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@OFDM/RS_gen.m -------------------------------------------------------------------------------- /@OFDM/RS_indices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@OFDM/RS_indices.m -------------------------------------------------------------------------------- /@OFDM/grid2vec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@OFDM/grid2vec.m -------------------------------------------------------------------------------- /@OFDM/unused_indices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@OFDM/unused_indices.m -------------------------------------------------------------------------------- /@RxBasebandSystem/RxBasebandSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@RxBasebandSystem/RxBasebandSystem.m -------------------------------------------------------------------------------- /@RxBasebandSystem/synchronize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@RxBasebandSystem/synchronize.m -------------------------------------------------------------------------------- /@SynchSignal/SynchSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@SynchSignal/SynchSignal.m -------------------------------------------------------------------------------- /@SystemModel/SystemModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@SystemModel/SystemModel.m -------------------------------------------------------------------------------- /@SystemModel/run_system.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/@SystemModel/run_system.m -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akyerr/MIMO-Synch-and-Channel-Estimate/HEAD/main.m --------------------------------------------------------------------------------