C++ to MATLAB: for loops
조회 수: 3 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
채택된 답변
madhan ravi
2020년 6월 15일
for offx = 0:1 % simplicity of MATLAB
...
end
댓글 수: 1
madhan ravi
2020년 6월 15일
You seem to be asking the basic questions https://www.mathworks.com/learn/tutorials/matlab-onramp.html to get you started with a trust.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!