필터 지우기
필터 지우기

How to subtract two sequential iteration value in for loop

조회 수: 2 (최근 30일)
SHUBHAM AGARWAL
SHUBHAM AGARWAL 2022년 10월 8일
이동: Image Analyst 2022년 10월 8일
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개)

Torsten
Torsten 2022년 10월 8일
이동: Image Analyst 2022년 10월 8일
You mean
Aold = 0.0;
for i=1:5
Anew = i^2;
diff_A = Anew - Aold
Aold = Anew;
end
diff_A = 1
diff_A = 3
diff_A = 5
diff_A = 7
diff_A = 9
?

카테고리

Help CenterFile Exchange에서 Elementary Math에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by