フィルターのクリア

how to run iterations?

48 ビュー (過去 30 日間)
Oluyemi Jegede
Oluyemi Jegede 2014 年 2 月 6 日
コメント済み: Oluyemi Jegede 2014 年 2 月 6 日
Please I need help with iterations. For instance, if my Matlab script runs thus:
z=2; z=1+z
What can i do if i am looking to run this a hundred times such that the result from '1+z' is put in place of Z upon every iteration. Thanks

採用された回答

Walter Roberson
Walter Roberson 2014 年 2 月 6 日
z=2;
for K = 1 : 100
z=1+z
end
  1 件のコメント
Oluyemi Jegede
Oluyemi Jegede 2014 年 2 月 6 日
thanks

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

その他の回答 (1 件)

Elvin
Elvin 2014 年 2 月 6 日
You can try something like this:
z = 0;
for i = 1:100
z = z+i;
end
  2 件のコメント
Walter Roberson
Walter Roberson 2014 年 2 月 6 日
Notice this is "z+i" (lower-case I) not "z+1" (digit one)
Oluyemi Jegede
Oluyemi Jegede 2014 年 2 月 6 日
thanks

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

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by