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.

답변 (1개)

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 12월 4일
편집: JESUS DAVID ARIZA ROYETH 2019년 12월 4일

0 개 추천

for i=[1 3 5 5.5 6 6.5 7 9]
...
end

댓글 수: 2

Alejandro Fernández
Alejandro Fernández 2019년 12월 4일
thank you very much, but well the interval I had set is just an example, the real is much greater and write it by hand would not be a good solution.
Any other ideas?
JESUS DAVID ARIZA ROYETH
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?

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

질문:

2019년 12월 4일

댓글:

2019년 12월 4일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by