├── DNN_Regression_Image_SER_Test.m ├── Data_Generation.m ├── Data_Generation_WIN2.m ├── Demonstration_of_papers_DNN.m ├── Extract_Feature_OFDM.m ├── MMSE_Block_Pilot_Demo_1.m ├── MMSE_Uniform_PDP.m ├── OFDM_Receiver.m ├── OFDM_Transmitter.m ├── Onehot_generator.m ├── Plot.m ├── QPSK_Demodulator.m ├── QPSK_Modualtor.m ├── README.md ├── Test_DNN_regression.m ├── The_rest ├── Demonstration_of_papers_DNN_classification │ ├── Data_Generation.m │ ├── Demonstration_of_papers_DNN_classification.m │ ├── Extract_Feature_OFDM.m │ ├── MMSE_Channel_Tap_Block_Pilot_Demo_1.m │ ├── MMSE_Uniform_PDP.m │ ├── OFDM_Receiver.m │ ├── OFDM_Transmitter.m │ ├── Onehot_generator.m │ ├── Plot.m │ ├── QPSK_Demodulator.m │ ├── QPSK_Modualtor.m │ └── Train_DNN_Classification.m ├── Demonstration_of_papers_DNN_sequence_regression │ ├── Data_Generation.m │ ├── Demonstration_of_papers_DNN_regression.m │ ├── Extract_Feature_OFDM.m │ ├── MMSE_Channel_Tap_Block_Pilot_Demo_1.m │ ├── MMSE_Uniform_PDP.m │ ├── OFDM_Receiver.m │ ├── OFDM_Transmitter.m │ ├── Onehot_generator.m │ ├── Plot.m │ ├── QPSK_Demodulator.m │ ├── QPSK_Modualtor.m │ ├── Test_DNN_regression.m │ └── Train_DNN.m ├── Demonstration_of_papers_LSTM_classification │ ├── Data_Generation.m │ ├── Demonstration_of_papers_LSTM_classification.m │ ├── Extract_Feature_OFDM.m │ ├── MMSE_Channel_Tap_Block_Pilot_Demo_1.m │ ├── MMSE_Uniform_PDP.m │ ├── OFDM_Receiver.m │ ├── OFDM_Transmitter.m │ ├── Onehot_generator.m │ ├── Plot.m │ ├── QPSK_Demodulator.m │ ├── QPSK_Modualtor.m │ └── Train_LSTM_64.m └── SER_Test │ ├── DNN_Classification_SER_Test.m │ ├── DNN_Regression_Image_SER_Test.m │ ├── DNN_Regression_Sequence_SER_Test.m │ └── LSTM_Classification_SER_Test.m └── Train_DNN.m /DNN_Regression_Image_SER_Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/DNN_Regression_Image_SER_Test.m -------------------------------------------------------------------------------- /Data_Generation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/Data_Generation.m -------------------------------------------------------------------------------- /Data_Generation_WIN2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/Data_Generation_WIN2.m -------------------------------------------------------------------------------- /Demonstration_of_papers_DNN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/Demonstration_of_papers_DNN.m -------------------------------------------------------------------------------- /Extract_Feature_OFDM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/Extract_Feature_OFDM.m -------------------------------------------------------------------------------- /MMSE_Block_Pilot_Demo_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/MMSE_Block_Pilot_Demo_1.m -------------------------------------------------------------------------------- /MMSE_Uniform_PDP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/MMSE_Uniform_PDP.m -------------------------------------------------------------------------------- /OFDM_Receiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/OFDM_Receiver.m -------------------------------------------------------------------------------- /OFDM_Transmitter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/OFDM_Transmitter.m -------------------------------------------------------------------------------- /Onehot_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/Onehot_generator.m -------------------------------------------------------------------------------- /Plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/Plot.m -------------------------------------------------------------------------------- /QPSK_Demodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/QPSK_Demodulator.m -------------------------------------------------------------------------------- /QPSK_Modualtor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/QPSK_Modualtor.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/README.md -------------------------------------------------------------------------------- /Test_DNN_regression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/Test_DNN_regression.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/Data_Generation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/Data_Generation.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/Demonstration_of_papers_DNN_classification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/Demonstration_of_papers_DNN_classification.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/Extract_Feature_OFDM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/Extract_Feature_OFDM.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/MMSE_Channel_Tap_Block_Pilot_Demo_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/MMSE_Channel_Tap_Block_Pilot_Demo_1.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/MMSE_Uniform_PDP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/MMSE_Uniform_PDP.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/OFDM_Receiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/OFDM_Receiver.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/OFDM_Transmitter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/OFDM_Transmitter.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/Onehot_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/Onehot_generator.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/Plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/Plot.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/QPSK_Demodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/QPSK_Demodulator.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/QPSK_Modualtor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/QPSK_Modualtor.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_classification/Train_DNN_Classification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_classification/Train_DNN_Classification.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/Data_Generation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/Data_Generation.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/Demonstration_of_papers_DNN_regression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/Demonstration_of_papers_DNN_regression.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/Extract_Feature_OFDM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/Extract_Feature_OFDM.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/MMSE_Channel_Tap_Block_Pilot_Demo_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/MMSE_Channel_Tap_Block_Pilot_Demo_1.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/MMSE_Uniform_PDP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/MMSE_Uniform_PDP.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/OFDM_Receiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/OFDM_Receiver.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/OFDM_Transmitter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/OFDM_Transmitter.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/Onehot_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/Onehot_generator.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/Plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/Plot.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/QPSK_Demodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/QPSK_Demodulator.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/QPSK_Modualtor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/QPSK_Modualtor.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/Test_DNN_regression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/Test_DNN_regression.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_DNN_sequence_regression/Train_DNN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_DNN_sequence_regression/Train_DNN.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/Data_Generation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/Data_Generation.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/Demonstration_of_papers_LSTM_classification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/Demonstration_of_papers_LSTM_classification.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/Extract_Feature_OFDM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/Extract_Feature_OFDM.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/MMSE_Channel_Tap_Block_Pilot_Demo_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/MMSE_Channel_Tap_Block_Pilot_Demo_1.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/MMSE_Uniform_PDP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/MMSE_Uniform_PDP.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/OFDM_Receiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/OFDM_Receiver.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/OFDM_Transmitter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/OFDM_Transmitter.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/Onehot_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/Onehot_generator.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/Plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/Plot.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/QPSK_Demodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/QPSK_Demodulator.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/QPSK_Modualtor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/QPSK_Modualtor.m -------------------------------------------------------------------------------- /The_rest/Demonstration_of_papers_LSTM_classification/Train_LSTM_64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/Demonstration_of_papers_LSTM_classification/Train_LSTM_64.m -------------------------------------------------------------------------------- /The_rest/SER_Test/DNN_Classification_SER_Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/SER_Test/DNN_Classification_SER_Test.m -------------------------------------------------------------------------------- /The_rest/SER_Test/DNN_Regression_Image_SER_Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/SER_Test/DNN_Regression_Image_SER_Test.m -------------------------------------------------------------------------------- /The_rest/SER_Test/DNN_Regression_Sequence_SER_Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/SER_Test/DNN_Regression_Sequence_SER_Test.m -------------------------------------------------------------------------------- /The_rest/SER_Test/LSTM_Classification_SER_Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/The_rest/SER_Test/LSTM_Classification_SER_Test.m -------------------------------------------------------------------------------- /Train_DNN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dianixn/Signal_detection_OFDMPowerofDNN/HEAD/Train_DNN.m --------------------------------------------------------------------------------