代码搜索:Simulated
找到约 1,823 项符合「Simulated」的源代码
代码结果 1,823
www.eeworm.com/read/155461/11869816
m snr.m
clear all
SNRindB1=0:35;
%SNRindB2=0:0.1:12;
for i=1:length(SNRindB1),
% simulated error rate
smld_err_prb(i)=smedge2(SNRindB1(i));
end;
semilogy(SNRindB1,smld_err_prb,'*')
hold
www.eeworm.com/read/235546/14064279
m qpsk_fading1_plot.m
clear all;
close all;
SNRindB1=0:1:10;
for i=1:length(SNRindB1)
[smld_err_prb(i)]=qpsk_fading(SNRindB1(i)); % simulated error rate
end;
semilogy(SNRindB1,smld_err_prb,'-ob');
www.eeworm.com/read/407662/11412505
m chain.m
% Simulation
% By Maxime Maury
% 05-04-21
% Type of different detectors, parameters for Detector.m
ML = 1; % Joint ML Detector
JMMSE = 2; % Joint MMSE Detector
ZF = 3; % Joint Zero-Forcing De
www.eeworm.com/read/395437/8173083
m qpsk_system_ber_simulation.m
% 本程序用来估计 QPSK 误码率;
% 考虑了瑞利衰落和白噪声,没有考虑率多径的影响;
% QPSK System Simulation,Pe evaluation
clear all; % close all;
% echo on;
SNRindB1=0:0.2:5;
SNRindB2=0:0.2:5;
% 瑞利信道;函数 cm_sm32 考虑了瑞利衰落和加性白噪声的影
www.eeworm.com/read/235546/14064113
m ofdmce1_plot.m
clear all;
close all;
SNRindB1=0:5:30;
for i=1:length(SNRindB1)
[smld_err_prb(i),smld_per_prb(i)]=ofdmce5(SNRindB1(i)); % simulated error rate
end;
semilogy(SNRindB1,smld_err_prb,'-*r');
hold o
www.eeworm.com/read/235546/14064118
m ofdm_plot.m
clear all;
close all;
SNRindB1=0:1:10;
for i=1:length(SNRindB1)
[smld_err_prb(i),smld_per_prb(i)]=ofdm(SNRindB1(i)); % simulated error rate
end;
semilogy(SNRindB1,smld_err_prb,'-*r');
www.eeworm.com/read/235546/14064166
m ofdmce1_mmse_plot.m
clear all;
close all;
SNRindB1=0:5:30;
for i=1:length(SNRindB1)
[smld_err_prb(i),smld_per_prb(i)]=ofdmce2_mmse(SNRindB1(i)); % simulated error rate
end;
semilogy(SNRindB1,smld_err_prb,'-*r'
www.eeworm.com/read/235546/14064198
m ofdmci_plot.m
clear all;
close all;
SNRindB1=0:1:10;
for i=1:length(SNRindB1)
[smld_err_prb(i),smld_per_prb(i)]=ofdmci(SNRindB1(i)); % simulated error rate
end;
semilogy(SNRindB1,smld_err_prb,'-*r');
www.eeworm.com/read/235546/14064202
m ofdmda_qpsk_plot.m
%在4经瑞利衰落条件下,qpsk and ofdm(with compensation)性能曲线比较
clear all;
close all;
SNRindB1=0:1:10;
for i=1:length(SNRindB1)
[smld_err_prb(i),smld_per_prb(i)]=ofdmda(SNRindB1(i)); % simulated error rate
www.eeworm.com/read/235546/14064244
asv ofdmce1_mmse_plot.asv
clear all;
close all;
SNRindB1=0:5:30;
for i=1:length(SNRindB1)
[smld_err_prb(i),smld_per_prb(i)]=ofdmce2_mmse(SNRindB1(i)); % simulated error rate
end;
semilogy(SNRindB1,smld_err_prb,'-*r'