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 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Friedrich
il 12 Ago 2013
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.
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!