Effacer les filtres
Effacer les filtres

how to write these two equations

2 vues (au cours des 30 derniers jours)
Sultan Al Harthy
Sultan Al Harthy le 24 Mar 2020
  1 commentaire
Adam Danz
Adam Danz le 24 Mar 2020
Is this a duplicate question or are you looking for answers to both questions?

Connectez-vous pour commenter.

Réponses (1)

David Hill
David Hill le 24 Mar 2020
Not sure what Tj means in the equation.
for k=1:K
for j=1:K
if j~=K
R(j,k)=B/2*log2(1+(h(k)*a(j))^2/(sum((h(k)*a(j+1:K)).^2)+e*sum((h(k)*a(1:j-1)).^2)+1/rho));
else
R(j,k)=B/2*log2(1+(h(K)*a(K))^2/(e*sum((h(K)*a(1:j-1)).^2)+1/rho));
end
end
end
  12 commentaires
David Hill
David Hill le 1 Avr 2020
I assume you are trying to get numeric solutions; therefore, your arrays of (h) and (a) need to be numeric and you need to assign a values to B, K, e, and rho before the above loops can be entered. Additionally, you will want to preallocate R:
R=zeroes(K,K);
Sultan Al Harthy
Sultan Al Harthy le 3 Avr 2020
i am confused

Connectez-vous pour commenter.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by