LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

bypassing false case

1)can i bypass the false case of a boolean case structure?
   given the situation that iam passing values in to an array in the true condition of the case structure how can i bypass the false case with    
    out storing any values in the false case as i have to use the array in some other applications.
    if so how is it possible.
 
2) can i start a while loop for a for loop from a value other than zero directly. if so how?
 
 
0 Kudos
Message 1 of 3
(2,678 Views)

The answer to both of your questions is a shift register. In the ture case, you update it and in the false case you just let it pass through. The iteration count of a loop always starts with 0 but you can initialize a shift register to any value and increment/decrement it with any value you want.

 

Message Edited by Dennis Knutson on 08-03-2006 12:36 PM

Message Edited by Dennis Knutson on 08-03-2006 12:36 PM

Message 2 of 3
(2,669 Views)
thank you dennis
ill try it out and get back if i have any more querries on it
with regards
vijay
0 Kudos
Message 3 of 3
(2,637 Views)