For the last couple of months, I'v taken over supporting LabView in our test lab and have been trying to learn LabView at the same time.
I feel that I understand one dimension arrays and clusters, I'm just having a hard time with nulti dimension arrays. All examples just load random numbers. As a contrived exercise, I am trying to wire a LabView program to execute the following pseudocode:
row=0
for voltage = 3 to 7 step 2
for current = 0.015 to 0.045 step 0.015
if voltage*current < max_power
bias(row,0)=voltage
bias(row,1)=current
row++
If I were to generate a text file, the output might look like this, depending on the load line:
3,0.015
3,0.030
3,0.045
5,0.015
5,0.030
7,0.015
I wire voltage from the outer loop to the inner loop and then can't figure out an easy way to properly load the elements. I'm not looking for an exact solution, just something that demonstrates the principle.
I'm using 5.1 on Sun and PC NT/XP machines, but I could probably get my hands on 8.2 if I had to.
This forum has been a big help during my self learning. Thank you.
gc