sum inside a for loob

hi everyone, I was wondering how to sum my calculation inside loop. here is a simple code:
%
for i=1:5
a = price1 * i;
b =sum(a)
%
so how to sum a, when i type like this it gives result (b=a) for every times. It does not add(sum) all of the results

1 件のコメント

tevzia
tevzia 2013 年 7 月 23 日
I figured out
% %
a=0;
for i =1:5
a = a + (price1 * i)
% code
end

サインインしてコメントする。

 採用された回答

Jan
Jan 2013 年 7 月 23 日

0 投票

b = 0;
for k = 1:5
a = price1 * k;
b = b + sum(a); % Or b = b + a?
end

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

質問済み:

2013 年 7 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by