How to increment and/or decrement with different values in the same loop
4 次查看(过去 30 天)
显示 更早的评论
This is the code I have but I was wondering if there is a more simple and efficient way to implement this. Basically, I am going from 15 to 1 but instead of decrementing with a single value i.e [15 14 13 12 ... 2 1] I want to reach the target by different incrementation such as in the screenshot below the code i.e [15 14 18 16 13 12 ... 4 1]
i = 1;
v = 15;
array(i) = 15;
while array(i) ~= 1
i = i + 1;
v = v - 1;
array(i) = v;
if array(i) == 1
break;
end
i = i + 1;
v = v + 4;
array(i) = v;
if array(i) == 1
break;
end
i = i + 1;
v = v - 2;
array(i) = v;
if array(i) == 1
break;
end
i = i + 1;
v = v - 3;
array(i) = v;
end
disp(array)

0 个评论
采纳的回答
Benjamin Kraus
2018-3-4
编辑:Benjamin Kraus
2018-3-4
Here is a version that is certainly shorter, and produces the same result, but I doubt it is any more efficient. The benefit I see to this version is that you can change the pattern more easily, and you don't have quite the same amount of redundant checks for whether the current value is 1.
pattern = [-1 4 -2 -3];
i = 1;
v = 15;
while v ~= 1
array(i) = v;
v = v + pattern(mod(i-1,numel(pattern))+1);
i = i + 1;
end
array(i) = v;
disp(array)
3 个评论
Benjamin Kraus
2018-3-4
My code was this:
mod(i-1,numel(pattern))+1
Your version is this:
mod(i-1,numel(pattern)+1)
The difference is adding 1 after calling mod vs. adding one to the input to mod.
Breaking down my version when i == 1:
i == 1
i-1 == 0
numel(pattern) == 4
mod(i-1,numel(pattern)) == mod(0,4) == 0
mod(i-1,numel(pattern))+1 == mod(0,4)+1 == 1
更多回答(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!