问题描述
- 注水算法子函数,希望得到注释
-
讲清一下重要的步骤,程序意义及物理意义,只程序意义也可
function [Capacity PowerAllo] = WaterFilling_alg(PtotA,ChA,B,N0);
%
% WaterFilling in Optimising the Capacity
%===============
% Initialization
%===============
ChA = ChA + eps;
NA = length(ChA); % the number of subchannels allocated toH = ChA.^2/(B*N0); % the parameter relate to SNR in subchannels
% assign the power to subchannel
PowerAllo = (PtotA + sum(1./H))/NA - 1./H;
while(length(find(PowerAllo < 0 ))>0)
IndexN = find(PowerAllo <= 0 );
IndexP = find(PowerAllo > 0);
MP = length(IndexP);
PowerAllo(IndexN) = 0;
ChAT = ChA(IndexP);
HT = ChAT.^2/(B*N0);
PowerAlloT = (PtotA + sum(1./HT))/MP - 1./HT;
PowerAllo(IndexP) = PowerAlloT;
end
PowerAllo = PowerAllo.';Capacity = sum(log2(1+ PowerAllo.' .* H));
解决方案
http://www.docin.com/p-192393246.html
http://wenku.baidu.com/link?url=-W3Noey9R9P-PAoCD186RxZaU-KmKtVzmNKDrT7uNztRpQgM0ik7pzTK9tw6D4OLEsxqn5Kjv4i6czqQdzzNKk2FdQHrl3nZqdL-Xp1Vqle
http://www.docin.com/p-648576372.html
解决方案二:
你程序%那都是解释呀,看来你对注水算法不了解呀
基本原理:
信噪比(即信号功率谱与噪声功率谱之和)为常数时,系统才能达到总信道容量最大的要求。
当SNR很大时,Pi等功率分配,注水算法功效消失。
在功率分配的问题中,只有满足注水定理时,才能达到信道容量最大化。
也就是说信噪比大的信道分得的功率多,信噪比小的信道分得的功率少。
使用拉格朗日乘子分配信道功率Pi使得信道容量最大。
Pi=( 1/(lambda)i—u )+
编程仿真:
先对池底进行排序,然后分段求解拉格朗日乘子(lambda)i。