How do I multiply two variables of form A(:,:, i) and B(:,:,i) where i = 20
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Sagar Saxena
el 16 de Mzo. de 2018
Comentada: Jan
el 20 de Mzo. de 2018
SO basically , I need the product of these 2 variables for 20 iterations and then add the products. I tried using * and .* but that doesn't work.
3 comentarios
Jan
el 20 de Mzo. de 2018
In this formula you multiply with the squared norm of Phi, which is a scalar, not a matrix.
Respuesta aceptada
Prajit T R
el 19 de Mzo. de 2018
Hi Sagar
Try this code:
sum=0
for i=1:20
sum=sum+s(:,:,i).*(phi(:,:,i).^2)
end
It will work if the sizes of A and B match.
Cheers
1 comentario
Jan
el 20 de Mzo. de 2018
Using "sum" as variable causes troubles frequently, because the builtin function sum() is not available afterwards. Better avoid shadowing of builtin functions by using different names.
Más respuestas (1)
Ver también
Categorías
Más información sobre Logical 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!