├── Matlab求积分和微分.docx ├── README.md ├── analog ├── AM │ ├── AM.m │ └── lowpass_filter.m ├── DSB-SC │ ├── DSB_SC.m │ └── lowpass_filter.m ├── FM_PM │ ├── FM.m │ └── PM.m └── SSB │ └── SSB.m ├── bandpass ├── ASK.m ├── DPSK.m ├── FSK.m ├── PSK.m ├── SNR_bandpass.m ├── lowpass_filter.m └── zeropad.m └── baseband ├── SNR_baseband.m ├── baseband_PSD.m ├── equalization.m ├── eye_diagram.m ├── partial_response.m ├── raised_cos_rolloff.m ├── rcos.m └── zeropad.m /Matlab求积分和微分.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/Matlab求积分和微分.docx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Communication-Matlab 2 | 对通信原理的内容的matlab实现 3 | 4 | 5 | -------------------------------------------------------------------------------- /analog/AM/AM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/analog/AM/AM.m -------------------------------------------------------------------------------- /analog/AM/lowpass_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/analog/AM/lowpass_filter.m -------------------------------------------------------------------------------- /analog/DSB-SC/DSB_SC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/analog/DSB-SC/DSB_SC.m -------------------------------------------------------------------------------- /analog/DSB-SC/lowpass_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/analog/DSB-SC/lowpass_filter.m -------------------------------------------------------------------------------- /analog/FM_PM/FM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/analog/FM_PM/FM.m -------------------------------------------------------------------------------- /analog/FM_PM/PM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/analog/FM_PM/PM.m -------------------------------------------------------------------------------- /analog/SSB/SSB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/analog/SSB/SSB.m -------------------------------------------------------------------------------- /bandpass/ASK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/bandpass/ASK.m -------------------------------------------------------------------------------- /bandpass/DPSK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/bandpass/DPSK.m -------------------------------------------------------------------------------- /bandpass/FSK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/bandpass/FSK.m -------------------------------------------------------------------------------- /bandpass/PSK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/bandpass/PSK.m -------------------------------------------------------------------------------- /bandpass/SNR_bandpass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/bandpass/SNR_bandpass.m -------------------------------------------------------------------------------- /bandpass/lowpass_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/bandpass/lowpass_filter.m -------------------------------------------------------------------------------- /bandpass/zeropad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/bandpass/zeropad.m -------------------------------------------------------------------------------- /baseband/SNR_baseband.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/baseband/SNR_baseband.m -------------------------------------------------------------------------------- /baseband/baseband_PSD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/baseband/baseband_PSD.m -------------------------------------------------------------------------------- /baseband/equalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/baseband/equalization.m -------------------------------------------------------------------------------- /baseband/eye_diagram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/baseband/eye_diagram.m -------------------------------------------------------------------------------- /baseband/partial_response.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/baseband/partial_response.m -------------------------------------------------------------------------------- /baseband/raised_cos_rolloff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/baseband/raised_cos_rolloff.m -------------------------------------------------------------------------------- /baseband/rcos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/baseband/rcos.m -------------------------------------------------------------------------------- /baseband/zeropad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baishanca/Communication-Matlab/HEAD/baseband/zeropad.m --------------------------------------------------------------------------------