Saving a variable value after each for-loop iteration
이전 댓글 표시
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
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
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!