标签: matlab
这是C中的for循环。如何在MATLAB中表示/R条件?
/R
i=i*2
答案 0 :(得分:3)
您可以使用此向量:
powers = 1:(ceil(log2(n))-1); range = 2.^powers for idx = range % statements end
答案 1 :(得分:-1)
for i=2:i.*2:n %your code here end