how we write condition in for loop?
Show older comments
suppose in c language we have a condition like k=0;k<j;k++
how we write this code in matlab?
Accepted Answer
More Answers (2)
Increment of 1
for k = 1:1:j % Increment of 1
% do operations
end
Increment of 2
for k = 1:2:j % Increment of 2
% do operations
end
Decrement from j to 1 in step of 1
for k = j:-1:1 % Decrement of -1
% do operations
end
Please Accept answer if you understood, else ping me for advanced help
1 Comment
Sanjoy Dey
on 3 Apr 2019
Sanjoy Dey
on 3 Apr 2019
Edited: Sanjoy Dey
on 3 Apr 2019
0 votes
Categories
Find more on MATLAB Coder in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!