C++ to MATLAB: for loops

currently working on converting C++ to MATLAB not proficient in C++ and this is a for loop
Help appreciated
for(offx=0;offx<=1;offx++){ %C++
...
end
%what's the equivalent?

 Accepted Answer

for offx = 0:1 % simplicity of MATLAB
...
end

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Asked:

on 15 Jun 2020

Commented:

on 15 Jun 2020

Community Treasure Hunt

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

Start Hunting!