Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
How i save the value of c in deach loop and sum these value after each value then using value in another eq outside loop??
조회 수: 2 (최근 30일)
이전 댓글 표시
Let say i have this simple loop,,
for i=1:3
A=x((i-1)*3+1);
B=x((i-1)*3+2);
C=x((i-1)*3+3);
Z=A*B+C*A;
end
i want the value of C in each loop to be sum and then using it in this eq let say,
W=E-C
because the value of C are different in each loop.
Thanks ^_^.
댓글 수: 0
답변 (1개)
Mahdi
2014년 6월 5일
Say E=3;
for i=1:3
A(i)=x((i-1)*3+1);
B(i)=x((i-1)*3+2);
C(i)=x((i-1)*3+3);
Z(i)=A*B+C*A;
W=E-sum(C);
end
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!