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!