please i want to calculate sum of E generated (i.e 1 to 5). i try it but the last E generated is showing as Etotal
3 次查看(过去 30 天)
显示 更早的评论
xm=100; ym=100;
sink.x=0.5*xm; sink.y=0.5*ym;
n=5;
PL =20;
TX=4;
Efs=10;
for j=1:1:n
S(j).xd=rand(1,1)*xm;
S(j).yd=rand(1,1)*ym;
distance=sqrt((S(j).xd-sink.x)^2 + (S(j).yd-sink.y)^2);
E=PL*(TX+Efs*(sqrt(distance)^2));% this is a formula
Etotal=sum(E)
end
0 个评论
采纳的回答
Friedrich
2013-8-12
Hi,
without having a close look I guess the last line should be:
Etotal = Etotal + sum(E)
Also declare Etotal to be 0 before your for loop.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!