Simulink Simulation of noncoherent BFSK passband signaling to measure the SER

Поделиться
HTML-код
  • Опубликовано: 14 ноя 2024

Комментарии • 1

  • @WonYYang
    @WonYYang  Месяц назад

    Watch ruclips.net/video/OGGrN1UudNc/видео.html for Simulink Simulation of OFDM communication system to get its BER
    Watch ruclips.net/video/1Za-e3Benis/видео.html for Simulink Simulation of coherent 4-FSK passband signaling to measure the SER
    Watch ruclips.net/video/5mYOsn3gJUw/видео.html for MATLAB Simulation of DPSK (Differential PSK) passband signaling to measure the BER
    Watch ruclips.net/video/BVIHik5qokM/видео.html for Simulink Simulation of DPSK (Differential PSK) passband signaling to measure the SER
    Watch ruclips.net/video/4TTIXiXSU9c/видео.html for Simulink Simulation of noncoherent FSK passband signaling to measure the SER
    Watch ruclips.net/video/QEZkGzNwcFg/видео.html for MATLAB Simulation of noncoherent FSK passband signaling to measure the SER
    Watch ruclips.net/video/7DxK631Kwuk/видео.html for MATLAB Simulation of coherent FSK passband signaling to measure the SER
    Watch ruclips.net/video/4cQChi4n1UY/видео.html for MATLAB Simulation of QAM passband signaling to measure the BER
    Watch ruclips.net/video/KdLoMi-fIU4/видео.html for Simulink Simulation of QAM passband signaling to measure the SER
    Watch ruclips.net/video/fjTkbNhyBg8/видео.html for MATLAB Simulation of PSK passband signaling to measure the BER
    Watch ruclips.net/video/QjQT_0ul79k/видео.html for Simulink Simulation of PSK passband signaling to measure the BER
    The following statements should be run before running the Simulink model where the Simulink model file can be downloaded at kr.mathworks.com/matlabcentral/fileexchange/173715-simulink-simulation-of-noncoherent-bfsk-passband-signaling:
    %run_before_running_BFSK_passband_noncoherent.m
    b=1; M=2^b; % Number of bits per symbol and Modulation order
    Ns=80; % Number of samples per symbol
    % This value of Ns=80 is crucial for the output signal powers of AWGN blocks,
    % one with a given value of SNRdB and one with the corresponding value of EbN0dB.
    % I don't know why.
    Ts=1e-5; T=Ts/Ns; % Symbol duration and Sampling interval
    A=sqrt(2/Ts); % Amplitude of sine/cosine wave for modulation
    df=1/Ts; fc=10*df; % Frequency separation and Carrier frequency
    dw=2*pi*df; wc=2*pi*fc;
    wc*T