03-26-2013 02:44 AM
Hello,
I use LabVIEW 2010 and develop a DAQ system. For real time monitoring I use graphics in fact mixed signal graph. As you see in the code I need to refresh the graphics in a time period. However, the cursors on the screen naturally delays also. anyone has a smart solution for this problem ?
03-26-2013 03:24 AM
Hi veli,
use parallel loops, one for DAQ and one for all cursor stuff. The second loop may run faster or even use an event structure (to minimize CPU usage)...
- Use UnbundleByName for getting the cursor properties, it's much more readable...
- You can enlarge the IndexArray function to show more than one output...
- The FOR loop on the upper right does the same as a simple ArraySubset function...
- Comparing floats for equality may become a problem...
- Is there a reason to use a MixedSignalGraph instead of an XYGraph?
03-29-2013 02:52 AM
Thanks for suggestions. I will follow them. I was going to use Mixed Signal Graph for plotting some group of plots. But I will use single group in another tabs now.