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??

1 回表示 (過去 30 日間)
ali
ali 2014 年 6 月 5 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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 ^_^.

回答 (1 件)

Mahdi
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
  2 件のコメント
ali
ali 2014 年 6 月 5 日
Hi mahdi,
i used this form but still not working as i want because the Z is constraint!! Thank you.
Mahdi
Mahdi 2014 年 6 月 5 日
編集済み: Mahdi 2014 年 6 月 5 日
What do you mean you want the Z as constraint? Can you explain what you want output to be in more detail please? Or give an example with numbers?

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by