2 Variable increment in one "for Loop'
24 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
回答(2 个)
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
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!