资源简介
应用matlab仿真mimo,保证能运行成功,对于做MIMO的童鞋很有用处
代码片段和文件信息
function sum_inst_cap = capacityMM(nTx nRx H e V Plinear sigma_N_2);
% sum_inst_cap = capacity(nTx nRx H e s V Plinear sigma_N_2)
%
% Computes the capacity of the channel from the EVD of the H matrix
% and the SVD of the correlation matrix R using Uniform power allocation
Le = min(nTx nRx); % ominaisarvojen max-m滗r?(Rank(R))
Signal = zeros(nTx nTx size(e2));
Noise = sigma_N_2*eye(nRx);
%
% Computation of instantaneous capacities
%
% Brute force method
% C = det ( I + H Q H‘) where Q = V Pw V‘ and H‘H = V D V‘
% Note: Telatar writes H‘H = U‘ D U and Q = U‘ Pw U
for ii = 1:size(H3)
icu(ii) = log2(det(eye(nRx) + inv(Noise) * H(::ii) * ((Plinear/nTx) ...
* eye(nTx)) * H(::ii)‘));
end;
%
% Computation of cumulative capacities
%
sum_inst_cap(1:) = mean(real(icu)); % Uniform capacities (Brute-Force method)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2248 2001-10-03 10:39 mimo\AS2sigma_gaussian.mat
文件 2248 2001-10-03 10:39 mimo\AS2sigma_laplacian.mat
文件 886 2005-10-10 07:09 mimo\capacityMM.m
文件 5539 2005-10-06 08:29 mimo\correlation.m
文件 4365 2001-12-05 16:52 mimo\dialog.m
文件 1613 2001-10-03 07:53 mimo\erfcomp.m
文件 6961 2005-11-16 21:09 mimo\example_MIMO.m
文件 616 2005-09-29 15:09 mimo\generate_H.m
文件 3950 2002-03-08 11:42 mimo\geometry2correlation.m
文件 256856 2010-05-11 18:49 mimo\H.mat
文件 317355 2005-11-15 17:22 mimo\implementation_note_MIMO_Matlab.pdf
文件 4696 2002-03-08 12:58 mimo\init_fading.m
文件 3194 2002-03-08 09:32 mimo\init_MIMO_channel.m
文件 2915 2002-03-08 09:25 mimo\init_Rice.m
文件 1093 2005-10-10 08:17 mimo\MIMOcapacity.m
文件 7354 2002-04-17 07:45 mimo\MIMO_channel.m
文件 1661 2006-10-03 09:17 mimo\MIMO_System.m
文件 2617 2002-03-08 10:26 mimo\normalisation_gaussian.m
文件 2730 2005-10-06 08:30 mimo\normalisation_laplacian.m
文件 1782 2005-10-06 08:31 mimo\normalisation_uniform.m
文件 2193 2002-03-08 11:40 mimo\plot_gaussian.m
文件 2164 2002-03-08 11:41 mimo\plot_laplacian.m
文件 6269 2002-03-13 09:17 mimo\plot_MIMO.m
文件 2131 2002-03-08 11:41 mimo\plot_uniform.m
文件 2304 2002-03-08 10:56 mimo\Rxx_gaussian.m
文件 1994 2002-03-08 10:57 mimo\Rxx_laplacian.m
文件 1897 2001-10-23 08:48 mimo\Rxx_uniform.m
文件 2498 2002-03-08 10:57 mimo\Rxy_gaussian.m
文件 2311 2002-03-08 10:58 mimo\Rxy_laplacian.m
文件 1999 2002-03-08 10:58 mimo\Rxy_uniform.m
............此处省略9个文件信息
- 上一篇:Elman神经网络
- 下一篇:直接反投影法重建CT图像
评论
共有 条评论