필터 지우기
필터 지우기

How do I multiply two variables of form A(:,:, i) and B(:,:,i) where i = 20

조회 수: 2 (최근 30일)
Sagar  Saxena
Sagar Saxena 2018년 3월 16일
댓글: Jan 2018년 3월 20일
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
Sagar  Saxena
Sagar Saxena 2018년 3월 16일
Could you plese help me to formulate this equation in matlab, rest I can figure out. Please see the attached image. I am just trying to plot the point spread function.
Jan
Jan 2018년 3월 20일
In this formula you multiply with the squared norm of Phi, which is a scalar, not a matrix.

댓글을 달려면 로그인하십시오.

채택된 답변

Prajit T R
Prajit T R 2018년 3월 19일
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
Jan
Jan 2018년 3월 20일
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.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by