how to take summation for square of modulus for the multiplication of two complex matrices for the below equation
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
VISHALI V
el 1 de Feb. de 2018
Editada: James Tursa
el 1 de Feb. de 2018
n=log10(-17);
N0=10^n
c=(gnew*vk)
d=abs(c)
e=d^2
pk=1500
f=e*pk
B=120000
sk=symsum(f)+BN0
0 comentarios
Respuesta aceptada
Birdman
el 1 de Feb. de 2018
k=5;
p=sym('p',[5 1]);
g=sym('g',[5 1]);
v=sym('v',[5 1]);
syms B N0 t
gama=(p.*abs(g.*v).^2)./(symsum(p.*abs(g.*v).^2,t,1,k)+B*N0)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Wireless Communications en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!