how to define an iteration number ?

10 ビュー (過去 30 日間)
Safia
Safia 2022 年 11 月 19 日
コメント済み: Safia 2022 年 11 月 19 日
Hi all!
i'm trying to implement a program in matlab attached, i'm wondering how to define the number of iteration j?

回答 (1 件)

Torsten
Torsten 2022 年 11 月 19 日
The number of iterations is initialized as 0 :
i = 0;
Within the while loop, for each time the while loop is repeated, the number of iterations i is increased by 1:
i = i+1;
  14 件のコメント
Torsten
Torsten 2022 年 11 月 19 日
I really don't understand the problem. If you save x in each of the iteration loops (maybe by overwriting a previous x), all would be fine, wouldn't it ?
Safia
Safia 2022 年 11 月 19 日
@Torsten the current x used will be replaced by the output result to do the calculation in next iteration.

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

カテゴリ

Help Center および File ExchangeGet Started with Optimization Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by