06-23-2009 12:50 PM
06-23-2009 01:59 PM
101,
It is not exactly clear as to what you are doing, but I will speculate. It sounds as though you are adding datapoints to a waveform chart one at a time perhaps in a loop, and at the same time, writing the results to an array that you are showing on your front panel? If this is the case, you will need to append to the array each time through the loop (or for each datapoint you acquire and chart) in order to pile up the same data in the array. Use the Build Array.vi to add to your array as you go. You will need to maintain the contents of your array from iteration to iteration using a shift register.
-cb
06-23-2009 02:06 PM
06-23-2009 02:18 PM
06-23-2009 02:20 PM
You got advice with the Build Array and Shigt Register. If you don't understand what those are, say so. Don't just ask for help again because the advice you got is probably the advice you will be given again. Post your code so someone can see what you are actually doing.
p.s. You certainly don't need a table to export the data.
06-23-2009 02:52 PM
06-23-2009 03:19 PM
06-23-2009 03:56 PM
You can't do anything with that VI. You don't have a loop around the code so it will only execute once unless you use the run continuous button. DO NOT USE THAT! That is for special debug purposes only.
Put a while loop around your code. Try that and post back if you get stuck.
06-23-2009 07:33 PM
NAL101 wrote:
Today i my first time ever using labview. where do i get the code?
Then I would recommend you learn more about LabVIEW from here. How to Learn LV
06-29-2009 08:42 AM