Saving a variable value after each for-loop iteration

조회 수: 11 (최근 30일)
Trevor Klemann
Trevor Klemann 2020년 5월 7일
편집: Mehmed Saad 2020년 5월 7일
I am trying to save the value of p at each iteration of the for loop. How am i able to do this?

답변 (1개)

Mehmed Saad
Mehmed Saad 2020년 5월 7일
편집: Mehmed Saad 2020년 5월 7일
Initialize a variable for counter and a variable to save values of p (suppose pp) in the start of code (before for loop) . Increment counter every iteration and save values of p in pp by indexing it with counter such that in 1st loop iteration
pp(1) = p;
and in 2nd loop iteration
pp(2) = p;
and goes on

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by