问个Sequence结构的问题
时间:12-13
整理:3721RD
点击:
如果我只想让Sequence结构中的几个frame重复执行,有什么好办法呢?
比如一个Sequence中包含1-5个frame,只想执行1,2,3后让4,5重复执行
怎么办呢?
谢谢!
.161
比如一个Sequence中包含1-5个frame,只想执行1,2,3后让4,5重复执行
怎么办呢?
谢谢!
.161
Put frames 4 and 5 in another loop, say "for loop" or "while loop".
Actually it is not easy to realize "goto" or some complex structres in LV. You
can use subVIs to solve some problems.
.128
But how to deal with the connect?
I mean, for example, you put 1,2,3 frames in one sequence and 4,5 in another
loop(for,while,or subvi),how two connect the above two structure?
Whatever,thank you for your response.
.161
连接可以随便,比如说在sequence中放个常数0,把它连接到后面的loop的边缘。
这样它们之间就是顺序运行,先运行sequence再运行loop.
如果不连接的话它们之间就是并行的了。
.42