Code covered by the BSD License
-
BERtheoretical(v_EbN0_dB,n_mo...
-
ReedSolomon(random,codeRS,Tx)...
-
TestBW (G,SUI,n_mod_type,samp...
-
TestCP(n_mod_type,SUI,samples...
-
TestChannels(n_mod_type,G,sam...
-
TestEncode(n_mod_type,G,SUI,s...
-
TestMods (G,SUI,samples,BW,fi...
-
[tap_variances,L,Dop]=CIRpowe...
-
bit_symbol(M,type,M1,M2)
-
channelSUI(N_SUI,G,BW)
-
createsymbol (pilots,data)
-
cyclic(symbol_ofdm,G,Tx);
-
decoder (pilots_tx,data_tx,sy...
-
draw(graphic,value,v_EbN0_dB,...
-
encoder (data_in,codeRS,templ...
-
estimatechannel(pilot_tx,data...
-
extract_data(symbol_ofdm_rx,v...
-
fadingcoeff=genh(I,v,Dop,tb)
-
find_index(num,table)
-
generatedata(n_mod_type,rate,...
-
generatepilot (n_symbol,Tx)
-
gray2bi( g )
-
graytable(K)
-
interleaving(data_convolution...
-
mapping( data_interleaving, n...
-
noise(symbolRx,SNR,n_mod_type...
-
parameters_SUI(N_SUI);
-
parameters_constellation(n_mo...
-
pb_pam_koh_ray (EbN0db,M,L,ma...
-
pb_psk_koh_ray (EbN0db,M,L,ma...
-
pb_qam_koh_ray (EbN0db,M,L,ma...
-
random(msg,BSID,DIUC,Frame);
-
receiver (symbolTx,G);
-
substrleft(k,pam)
-
systems (SNR,n_mod_type,G,N_S...
-
transmitter (pilot_mapping,da...
-
viterbi(msg,template,Tx);
-
bin_coef.m
-
wimax.m
-
View all files
|
|
| parameters_SUI(N_SUI);
|
function [P,K,tau,Dop,ant_corr,Fnorm] = parameters_SUI(N_SUI);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %
%% Name : parameters_SUI.m %
%% %
%% Function : Following the value of the channel to simulate, %
%% the parameters are given back to be able to obtain the %
%% simulation. %
%% %
%% Parameters based on the document 802163c-01_29r4 %
%% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% The parameters given back are the following: %
% %
% P --> Power of each path (dB) %
% K --> Factor K of the Ricean distribution (Linear) %
% tau --> Delay of each path (microseconds) %
% Dop --> Maximum Doppler frequency (Hertz) %
% ant_corr --> Coefficient of antenna correlation %
% Fnorm --> Normalizing factor of gain (dB) %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
switch N_SUI
case 1
P = [ 0 -15 -20 ];
K = [ 4 0 0 ];
tau = [ 0.0 0.4 0.9 ];
Dop = [ 0.4 0.3 0.5 ];
ant_corr = 0.7;
Fnorm = -0.1771;
case 2
P = [ 0 -12 -15 ];
K = [ 2 0 0 ];
tau = [ 0.0 0.4 1.1 ];
Dop = [ 0.2 0.15 0.25 ];
ant_corr = 0.5;
Fnorm = -0.3930;
case 3
P = [ 0 -5 -10 ];
K = [ 1 0 0 ];
tau = [ 0.0 0.4 0.9 ];
Dop = [ 0.4 0.3 0.5 ];
ant_corr = 0.4;
Fnorm = -1.5113;
case 4
P = [ 0 -4 -8 ];
K = [ 0 0 0 ];
tau = [ 0.0 1.5 4.0 ];
Dop = [ 0.2 0.15 0.25 ];
ant_corr = 0.3;
Fnorm = -1.9218;
case 5
P = [ 0 -5 -10 ];
K = [ 0 0 0 ];
tau = [ 0.0 4.0 10.0 ];
Dop = [ 2.0 1.5 2.5 ];
ant_corr = 0.3;
Fnorm = -1.5113;
case 6
P = [ 0 -10 -14 ];
K = [ 0 0 0 ];
tau = [ 0.0 14.0 20.0 ];
Dop = [ 0.4 0.3 0.5 ];
ant_corr = 0.3;
Fnorm = -0.5683;
end
|
|
Contact us at files@mathworks.com