How to subtract two sequential iteration value in for loop
이전 댓글 표시
Dear Expert,
If for loop (i=1:2) is generating two vlaues for A. Then how do i subtract the first value from second value?
Thank you
답변 (1개)
You mean
Aold = 0.0;
for i=1:5
Anew = i^2;
diff_A = Anew - Aold
Aold = Anew;
end
?
카테고리
도움말 센터 및 File Exchange에서 Waveform Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!