what does odd_flag=1 mean
1 次查看(过去 30 天)
显示 更早的评论
i tried to find in documentation but couldn't found also what does ii means
odd_flag=1;
for j=1:im_sz(2)
for ii=1:im_sz(1)
4 个评论
John D'Errico
2018-2-20
编辑:John D'Errico
2018-2-20
odd_flag = 1
assigns the value 1 to the variable odd_flag.
What it means is probably nothing, since it is apparently just an unused variable. Odds are whoever wrote that code used a variable called odd_flag before, but then changed to code to no longer use it, and forgot to delete that line.
You need to understand that you can name a variable virtually ANYTHING you want. There is nothing special about that choice of name. And if it is unused, then it does noting at all, except waste a few CPU cycles to create it.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 GPU Computing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!