Storing error values in for loop

I'm sure this is a pretty simple for loop but I'm trying to store the error value for each iteration performed in my code but not too sure how to do this. The error is equal to this. Any suggestions are greatly appreciated. Thanks
error = max(abs(T - T_c), [], 'all');

回答 (1 件)

Rik
Rik 2020 年 4 月 28 日

0 投票

Don't use error as a variable name. Otherwise you can just use indexing:
err=zeros(1,N);
for n=1:N
%your code goes here
err_for_this_iteration=rand;
err(n)=err_for_this_iteration;
end

カテゴリ

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

製品

タグ

質問済み:

2020 年 4 月 28 日

回答済み:

Rik
2020 年 4 月 28 日

Community Treasure Hunt

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

Start Hunting!

Translated by