LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Iteration Issues ?

Solved!
Go to solution
Solution
Accepted by topic author gingram536

If all you want is to keep a constantly updating from within the loops then consider something like:

Loops.JPG

This isn't going to fix your race conditions however, and a race condition is a situation where you are unsure what the data on any specific output is going to be as you travel through the program, in this case it means that at about the same time within the program you are reading and writing to the same memory space, that is part of the reason you re advised to minimise usage of local variables as they allow you to read and write information from the same place and if not properly controlled can lead to unwanted behaviour of the code.

Message 11 of 12
(327 Views)

Thats exactly what I did, a (Row Iteration*8) + (Column Iteration) to append, works like a champ, appreciate the help

 

as far as the race conditions, I believe I cleaned it up. not sure if there was more than 1 or 2

 

0 Kudos
Message 12 of 12
(320 Views)