How to fsum on only one variable?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, I want to find the following Z(i)s but inside the sum is only for j. How can I write following script with sum on only j? Sorry if my question is very basic stuff
for i=1:n
for j=1:m
Z(i)=Z(i)-sum(S(j).*Z(i-j))
end
end
댓글 수: 0
채택된 답변
추가 답변 (1개)
Image Analyst
2013년 7월 8일
I have no idea what you're trying to do. First of all, Z(1) will depend on Z(1) which hasn't been defined yet so that will bomb. Next, i-j will equal zero when both i and j are 1, so that will bomb also. Beyond that I have no idea whatsoever what you're trying to do. And what is S?
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!