我有两个维度向量(130,1)。一个用于传输数据,另一个用于接收数据。使用以下代码,我获得了BER和向量中的错误数。问题是我不知道如何绘制BER与SNR曲线。虽然SNR可以以1为步长从1到30变化,但绘图仪的BER似乎没有变化,我得到一条直线而不是瀑布曲线。请帮助,提前致谢。
clc
clear all
close all
A = 'sample-25-4-18.xlsx';
sheet1 = 1;
sheet2 = 2
Range = 'A1:AN140';
B = xlsread (A ,sheet1, Range);
C = xlsread (A ,sheet2, Range);
N = 10^4 % number of bits or symbols
rand('state',100); % initializing the rand() function
randn('state',200); % initializing the randn() function
% Transmitter
Eb_N0_dB = [-3:10]; % multiple Eb/N0 values
for ii = 1:length(Eb_N0_dB)
% counting the errors
nErr(ii) = size(find([B - C]),1);
end
simBer = nErr/N; % simulated ber
theoryBer = 0.5*erfc(sqrt(10.^(Eb_N0_dB/10))); % theoretical ber
% plot
close all
figure
semilogy(Eb_N0_dB,theoryBer,'b.-');
hold on
semilogy(Eb_N0_dB,simBer,'b*');
axis([-3 10 10^-5 0.5])
grid on
legend('theory', 'simulation');
xlabel('Eb/No, dB');
ylabel('Bit Error Rate');
title('Bit error probability curve for BPSK modulation');
情节如下所示。
请帮忙。提前谢谢。