Storing error values in for loop

2 views (last 30 days)
Griffin Polglaze
Griffin Polglaze on 28 Apr 2020
Answered: Rik on 28 Apr 2020
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');

Answers (1)

Rik
Rik on 28 Apr 2020
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

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!