Create loop with variable pitch
1 次查看(过去 30 天)
显示 更早的评论
Hello very good, I wondered if anyone would know how to create a for loop with variable pitch, the idea is as follows:
I would have to go through the positions 1 3 5 5.5 6 6.5 7 9. what I know is to use two bubles
for i=1:2:9
...
end
for i=5.1:0.5:6.9
...
end
Would there be any way to do it in one loop? Thank you very much.
0 个评论
回答(1 个)
JESUS DAVID ARIZA ROYETH
2019-12-4
编辑:JESUS DAVID ARIZA ROYETH
2019-12-4
for i=[1 3 5 5.5 6 6.5 7 9]
...
end
2 个评论
JESUS DAVID ARIZA ROYETH
2019-12-4
What is the pattern that your data follows because if they do not follow a regular pattern you must place them manually, if they have a regular pattern then what would it be?
另请参阅
类别
在 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!