06-14-2010 10:42 AM
The objective is to get the columns of data
data from column 0 = in one array
data from column 1 - in another array
.................until column n = in n array....
Right now i do not have a better way , other than an array subset. But I would not know what my value of n would be as it's a GUI. The user has to specify a value. It could be any value.
Any feedbacks are welcome..
06-14-2010 10:45 AM
You want to create a separate 1D array for each column in your 2D array?
May I ask what the purpose of that would be?
06-14-2010 10:47 AM
06-14-2010 10:48 AM
Cory K wrote:You want to create a separate 1D array for each column in your 2D array?
May I ask what the purpose of that would be?
Yes please answer that Q.
I am sensing you are trying to misuse array indicators and that is why we aren't "getting it".
Ben
06-14-2010 10:51 AM
To compare the values with another array . That other array is doing fine. So i didn't include that as part of my question here.
06-14-2010 10:53 AM
Guitar wrote:To compare the values with another array . That other array is doing fine. So i didn't include that as part of my question here.
So do you actually need to display the data? Or do you just need to keep track of it for comparison later?
LabVIEW can keep that data in memory for use later without having to display it on the front panel
06-14-2010 11:01 AM
''So do you actually need to display the data? Or do
you just need to keep track of it for comparison later?
LabVIEW can
keep that data in memory for use later without having to display it on
the front panel''
Hi. You guys finally got my point. Thanks!! I knew i missed out something. How do Labview keep data in memory? This would be a much better option than displaying all the data. Any link or step by step tips on how to do that??
06-15-2010 12:18 AM
LabVIEW actually kept data in wire.
Therefore, if you wish to later use data in loop, you can keep it with "shift register".
But if you wish to use it in another loop, the simplest way is to display it, and using "local variable" to send data from display to another loop.
If you don't understand the term in quote, try searching it in ni.com.