LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Tabular Data

I have a vi which displaysa force v. deflection curve on the screen when a
test is run, however, I would like to display the data in tabular
form...such as the load every .1 inches for 2.5 insches of stroke...any
ideas? Help!!!!!
0 Kudos
Message 1 of 2
(2,861 Views)
> I have a vi which displaysa force v. deflection curve on the screen when a
> test is run, however, I would like to display the data in tabular
> form...such as the load every .1 inches for 2.5 insches of stroke...any
> ideas? Help!!!!!

If you aren't already, collect the data into arrays of numerics, specifically
into a 2D array of numerics. Use the Format functions to format the 2D array
of numerics into a 2D array of strings, then wire this to a tabel control.

Alternatively, you can wire the 2D array of numerics to an array control of
numeric type stretched out to show multiple elements. You may need to transpose
the data before display.

Greg McKaskle
0 Kudos
Message 2 of 2
(2,861 Views)