资源简介
毫米波信道模型(MMWave Channel Model),毫米波信道建模的程序,对毫米波信道建模的学习很有帮助
代码片段和文件信息
function a=Array_response(YZphithetakd)
% This Function generates array response of a planar uniform array as in
%
% S. Buzzi C. D‘Andrea “On Clustered Statistical MIMO Millimeter Wave Channel Simulation“
% submitted to IEEE Wireless Communications Letters
%
% License: This code is licensed under the GPLv2 License.If you in any way
% use this code for research that results in publications please cite our
% original article listed above.
%% INPUT PARAMETERS:
% Y and Z: number of antennas on the y and x axes of the
% planar array (e.g. 10 and 5 for a planar array with 50 antennas);
% phi and theta: are the position in azimuth and elevation of
% the considered path;
% kd: product of wavenumber2*pi/lambda and
% the inter-element spacing of the array.
%% OUTPUT PARAMETERS
% a: array response of planar array column vector with Y*Z elements and
% unitary norm.
A=zeros(YZ); % initialize a temporary matrix
for m=1:Y
for n=1:Z
A(mn)=exp(1j*kd*((m-1)*sin(phi)*sin(theta)+(n-1)*cos(theta))); % calculate the element of temporary matrix
end
end
a=A(:)/sqrt(Y*Z); %dispose elements in a vector
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-04-28 15:44 mmWave_Channel_Model-master\
文件 1174 2017-04-28 15:44 mmWave_Channel_Model-master\Array_response.m
文件 569 2017-04-28 15:44 mmWave_Channel_Model-master\Empirical_CDF.m
文件 2166 2017-04-28 15:44 mmWave_Channel_Model-master\Evaluation_Path_loss.m
文件 10521 2017-04-28 15:44 mmWave_Channel_Model-master\Generate_Channel_frequency_selective_LTI.m
文件 12254 2017-04-28 15:44 mmWave_Channel_Model-master\Generate_Channel_frequency_selective_LTV.m
文件 18046 2017-04-28 15:44 mmWave_Channel_Model-master\LICENSE
文件 620 2017-04-28 15:44 mmWave_Channel_Model-master\Laplace_distribution.m
文件 2903 2017-04-28 15:44 mmWave_Channel_Model-master\Main_Channel.m
文件 4461 2017-04-28 15:44 mmWave_Channel_Model-master\Main_Figure2a.m
文件 5755 2017-04-28 15:44 mmWave_Channel_Model-master\Main_Figure2b.m
文件 2263 2017-04-28 15:44 mmWave_Channel_Model-master\README.md
文件 3473 2017-04-28 15:44 mmWave_Channel_Model-master\Spectral_efficiency.m
评论
共有 条评论