LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

build array from only one condition of a case structure

Solved!
Go to solution
Thanks for the help I've solved it now. I'm just getting use to the UI interface the logic is simple.I'm not that keen on graphical programming compared to text. 
0 Kudos
Message 11 of 12
(1,163 Views)

I'm not that keen on graphical programming compared to text.

Then do what I do.  Although I'm a 20-year LabVIEW vet, I still write things out in pseudo-code:

 

WORKINGARRAY = INIT ARRAY (I32, 0)

for each Source in SOURCE ARRAY[ ]

    if Source > 5

        Append i to WORKINGARRAY

    else

        { do nothing }

    end if

end for

 

 

Steve Bird
Culverson Software - Elegant software that is a pleasure to use.
Culverson.com


LinkedIn

Blog for (mostly LabVIEW) programmers: Tips And Tricks

0 Kudos
Message 12 of 12
(1,159 Views)