2 Variable increment in one "for Loop'

조회 수: 23 (최근 30일)
Anuj Nandal
Anuj Nandal 2020년 12월 15일
댓글: KSSV 2020년 12월 15일
I was using a code and i need to write one "for loop" with two variable incrementing simultaneously. There is easy code in C, C++, but i'm not able to find one for this one. For reference i want to do this in matlab:
for(i=1,j=2;i<10,j<20;i++,j+2)
I can't use nested loop , could someone please help with this.

답변 (2개)

KSSV
KSSV 2020년 12월 15일
편집: KSSV 2020년 12월 15일
for i = 1:10
for j = 1:2:20
[i j]
end
end
  댓글 수: 5
Anuj Nandal
Anuj Nandal 2020년 12월 15일
편집: KSSV 2020년 12월 15일
Thanks for the help, but i think i got it:
j=2
if j<20
for i=1:10
% operation using i,j
j=j+2;
end
end
Is this right?
KSSV
KSSV 2020년 12월 15일
Thats fine.

댓글을 달려면 로그인하십시오.


SHIVAM KUMAR
SHIVAM KUMAR 2020년 12월 15일
Or use j= 2*i
for i=1:9 %the end term will also come so use 9 here.
j=2*i;
%function
end

카테고리

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

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by